Authen-DigestMD5
view release on metacpan or search on metacpan
DigestMD5.pm view on Meta::CPAN
114115116117118119120121122123124125126127128129130131132133package
Authen::DigestMD5::Response;
our
@ISA
=
qw(Authen::DigestMD5::Packet)
;
use
strict;
use
warnings;
use
Carp;
sub
new {
my
$this
=
shift
->SUPER::new(
@_
);
$this
->{_nc}={};
return
$this
;
}
sub
_public {
my
$this
=
shift
;
return
grep
{
$_
=~/^[a-z]/i and
$_
ne
'password'
}
keys
(
%$this
);
}
( run in 0.231 second using v1.01-cache-2.11-cpan-1dc43b0fbd2 )