Angel has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/local/bin/perl #password correctness md5 direct insert from UNIX hash open( CRYPT , "MD5 -s $ARGV[0] |" ); $password_hash = <CRYPT>; close( CRYPT ); print $password_hash;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Password Hashing Issues
by zigdon (Deacon) on Oct 31, 2002 at 19:46 UTC | |
|
Re: Password Hashing Issues
by fglock (Vicar) on Oct 31, 2002 at 20:53 UTC |