Searched refs:MD5 (Results 1 - 16 of 16) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Digest/MD5/t/
H A Dclone.t6 use Digest::MD5 qw(md5_hex);
8 my $a = Digest::MD5->new;
32 package MD5; package
33 @MD5::ISA = qw(Digest::MD5);
36 $a = MD5->new;
40 print "not " unless ref($b) eq "MD5" && $b->add("b")->hexdigest eq md5_hex("ab");
H A Dbits.t6 use Digest::MD5;
8 my $md5 = Digest::MD5->new;
H A Dutf8.t13 use Digest::MD5 qw(md5_hex);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Digest/MD5/
H A DMD5.pm1 package Digest::MD5;
26 Digest::MD5->bootstrap($VERSION);
32 require Digest::Perl::MD5;
34 Digest::Perl::MD5->import(qw(md5 md5_hex md5_base64));
35 push(@ISA, "Digest::Perl::MD5"); # make OO interface work
51 Digest::MD5 - Perl interface to the MD5 Algorithm
56 use Digest::MD5 qw(md5 md5_hex md5_base64);
63 use Digest::MD5;
65 $ctx = Digest::MD5
[all...]
H A DMD5.xs1 /* $Id: MD5.xs,v 1.42 2003/12/06 22:35:16 gisle Exp $ */
11 * This code is derived from Neil Winton's MD5-1.7 Perl module, which in
19 * is identified as the "RSA Data Security, Inc. MD5 Message-Digest
25 * Security, Inc. MD5 Message-Digest Algorithm" in all material
106 /* The MD5 algorithm is defined in terms of little endian 32-bit
181 /* F, G, H and I are basic MD5 functions.
480 croak("Not a reference to a Digest::MD5 object");
561 MODULE = Digest::MD5 PACKAGE = Digest::MD5
663 Digest::MD5
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CPAN/t/
H A DNox.t20 for my $mod (qw( Digest::MD5 LWP Compress::Zlib )) {
/osnet-11/usr/src/grub/grub-0.97/util/
H A Dgrub-md5-crypt.in3 # Encrypt a password in MD5 format
35 Encrypt a password in MD5 format.
/osnet-11/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftSSL.c203 * They implement the P_HASH() function for MD5 and for SHA1, as defined in
241 SOFT_MAC_UPDATE(MD5, &md5_hmac_ctx, label, labellen);
242 SOFT_MAC_UPDATE(MD5, &md5_hmac_ctx, rand1, rand1len);
243 SOFT_MAC_UPDATE(MD5, &md5_hmac_ctx, rand2, rand2len);
244 SOFT_MAC_FINAL(MD5, &md5_hmac_ctx, A);
259 SOFT_MAC_INIT_CTX(MD5, &md5_hmac_ctx, md5_ipad, md5_opad,
261 SOFT_MAC_UPDATE(MD5, &md5_hmac_ctx, A, MD5_DIGEST_LENGTH);
262 SOFT_MAC_UPDATE(MD5, &md5_hmac_ctx, label, labellen);
263 SOFT_MAC_UPDATE(MD5, &md5_hmac_ctx, rand1, rand1len);
264 SOFT_MAC_UPDATE(MD5,
[all...]
H A DsoftMAC.c217 SOFT_MAC_INIT_CTX(MD5, &(ctx->hc_ctx_u.md5_ctx),
543 SOFT_MAC_UPDATE(MD5, &(hmac_ctx->hc_ctx_u.md5_ctx),
546 SOFT_MAC_FINAL(MD5, &(hmac_ctx->hc_ctx_u.md5_ctx), pSigned);
655 SOFT_MAC_UPDATE(MD5, &(hmac_ctx->hc_ctx_u.md5_ctx), pPart,
698 SOFT_MAC_INIT_CTX(MD5, md5_hmac_ctx, ipad, opad, MD5_HMAC_BLOCK_SIZE);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/PerlIO/via/
H A DQuotedPrint.pm81 L<PerlIO::via::MD5>, L<PerlIO::via::StripHTML>, L<PerlIO::via::Rotate>.
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DDigest.pm14 "HMAC-MD5" => "Digest::HMAC_MD5",
69 $md5 = Digest->new("MD5");
131 use Digest::MD5 qw(md5);
270 MD5 128 Digest::MD5 v2.33 98.8
286 MD5 128 Digest::Perl::MD5 v1.5 1.0
297 L<Digest::HMAC>, L<Digest::MD2>, L<Digest::MD4>, L<Digest::MD5>,
311 developed by Neil Winton for his C<MD5> module.
H A DCPAN.pm770 } elsif ($mod eq "Digest::MD5"){
772 CPAN: MD5 security checks disabled because Digest::MD5 not installed.
773 Please consider installing the Digest::MD5 module.
3893 if ($CPAN::META->has_inst("Digest::MD5")) {
3894 $self->debug("Digest::MD5 is installed, verifying");
3897 $self->debug("Digest::MD5 is NOT installed");
4215 $self->{MD5_STATUS} eq "OK" and push @e, "MD5 Checksum was ok";
4285 my $md5 = Digest::MD5->new;
4308 my $wrap = qq{I\'d recommend removing $file. Its MD5
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/
H A DPOP3.pm89 if (eval { local $SIG{__DIE__}; require Digest::MD5 }) {
90 $md = Digest::MD5->new();
91 } elsif (eval { local $SIG{__DIE__}; require MD5 }) {
92 $md = MD5->new();
94 carp "You need to install Digest::MD5 or MD5 to use the APOP command";
458 To use this method you must have the Digest::MD5 or the MD5 module installed,
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/
H A Dcanonical.t44 # Use MD5 if its available to make random string keys
46 eval { require "MD5.pm" };
64 $k = MD5->hexhash($k) if $gotmd5 and int(rand(2));
/osnet-11/usr/src/cmd/ldap/ns_ldap/
H A Didsconfig.sh82 3 sasl/DIGEST-MD5
84 5 tls:sasl/DIGEST-MD5
91 2 sasl/DIGEST-MD5
93 4 tls:sasl/DIGEST-MD5
325 are provided in a menu. Note that sasl/DIGEST-MD5 binds require
396 that if you wish to use sasl/DIGEST-MD5 in conjunction with pam_ldap,
1828 2) _AUTHMETHOD="sasl/DIGEST-MD5"
1832 4) _AUTHMETHOD="tls:sasl/DIGEST-MD5"
1873 3) _AUTHMETHOD="sasl/DIGEST-MD5"
1877 5) _AUTHMETHOD="tls:sasl/DIGEST-MD5"
[all...]
/osnet-11/usr/src/grub/grub-0.97/
H A Dconfigure873 --disable-md5-password disable MD5 password support in Stage 2

Completed in 142 milliseconds