Is there an extension to implement crypt() in Windows. I want to use a script but it has a crypt() function in it and I get error as always when this function is call.
Have a look at comment nr. 2 at this page :
http://www.php.net/manual/en/function.crypt.php
It uses the crypt-function found in Perl.
Or you could use md5("blabla")
It is supposed to use a stronger one way encryption.
/Peter
I\'ll see about it. Thanks
MD5 does not "encrypt". What it does is more akin to compression really. "One way encryption" is an oxymoron. There is no encryption without decryption. Also, prefer SHA (or eventually RIPEMD) to MD5 : returned hashes are longer.