crypt in PHP

Syntax of crypt in PHP string crypt(string string[, string salt]) Encrypts string using the DES encryption algorithm seeded with the two-character salt value salt. If salt is not supplied, a random salt value is generated the first time crypt() is called in a script; this value is used on subsequent calls to crypt(). Returns the … Read more