Re: Crypt function

2001-06-27 Thread Richard J. Barbalace
Randal L. Schwartz <[EMAIL PROTECTED]> writes: > my $encrypted = crypt($cleartext, "zz"); > . > As for that salt parameter, ignore it. I just use "zz" or something. > In this day and age with fastcrypt implementations, having a varying > salt really doesn't add much to security. Having a bet

Re: Crypt function

2001-06-27 Thread ebgb
On Wed, Jun 27, 2001 at 08:49:55AM -0700, James Kelty wrote: > Can anyone point out a good book that details the functionality of perl > and crypt()? I would like to have a cgi page that allows new member to > sign up, hold the info in a flat file, but I would like to have the > passwords encrypt

Re: Crypt function

2001-06-27 Thread Randal L. Schwartz
> "James" == James Kelty <[EMAIL PROTECTED]> writes: James> Can anyone point out a good book that details the functionality James> of perl and crypt()? I would like to have a cgi page that James> allows new member to sign up, hold the info in a flat file, but James> I would like to have the p

Crypt function

2001-06-27 Thread James Kelty
Can anyone point out a good book that details the functionality of perl and crypt()? I would like to have a cgi page that allows new member to sign up, hold the info in a flat file, but I would like to have the passwords encrypted. Any help would be much appreciated! Thanks alot! -James