1PasswdMD5(3) User Contributed Perl Documentation PasswdMD5(3)
2
3
4
6 Crypt::PasswdMD5 - Provides interoperable MD5-based crypt() functions
7
9 use Crypt::PasswdMD5;
10
11 $cryptedpassword = unix_md5_crypt($password, $salt);
12 $apachepassword = apache_md5_crypt($password, $salt);
13
15 the "unix_md5_crypt()" provides a crypt()-compatible interface to the
16 rather new MD5-based crypt() function found in modern operating sys‐
17 tems. It's based on the implementation found on FreeBSD
18 2.2.[56]-RELEASE and contains the following license in it:
19
20 "THE BEER-WARE LICENSE" (Revision 42):
21 <phk@login.dknet.dk> wrote this file. As long as you retain this notice you
22 can do whatever you want with this stuff. If we meet some day, and you think
23 this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
24
25 "apache_md5_crypt()" provides a function compatible with Apache's
26 ".htpasswd" files. This was contributed by Bryan Hart <bryan@eai.com>.
27 As suggested by William A. Rowe, Jr. <wrowe@lnd.com>, it is exported by
28 default.
29
30 For both functions, if a salt value is not supplied, a random salt will
31 be generated. Contributed by John Peacock <jpeacock@cpan.org>.
32
33 EXPORT
34
35 None by default.
36
38 $Id: PasswdMD5.pm,v 1.3 2004/02/17 11:21:38 lem Exp $
39
40 19980710 luismunoz@cpan.org: Initial release
41 19990402 bryan@eai.com: Added apache_md5_crypt to create a valid hash
42 for use in .htpasswd files
43 20001006 wrowe@lnd.com: Requested apache_md5_crypt to be
44 exported by default.
45 20010706 luismunoz@cpan.org: Use Digest::MD5 instead of the (obsolete) MD5.
46
47 $Log: PasswdMD5.pm,v $ Revision 1.3 2004/02/17 11:21:38 lem Modified
48 the POD so that ABSTRACT can work Added usage example for
49 apache_md5_crypt()
50
51 Revision 1.2 2004/02/17 11:04:35 lem Added patch for random salts
52 from John Peacock (Thanks John!) De-MS-DOS-ified the file Replaced
53 some '' with q// to make Emacs color highlighting happy Added CVS docs
54 Completed the missing sections of the POD documentation Changed my
55 email address to the Perl-related one for consistency The file is now
56 encoded in UTF-8
57
59 This code and all accompanying software comes with NO WARRANTY. You use
60 it at your own risk.
61
62 This code and all accompanying software can be used freely under the
63 same terms as Perl itself.
64
66 Luis E. Muñoz <luismunoz@cpan.org>
67
69 perl(1).
70
71
72
73perl v5.8.8 2007-02-27 PasswdMD5(3)