How to decrypt a string encrypted with crypt() or sha1() ?
Is it possible to decrypt the password, that is encrypted with crypt() or sha1() PHP function ?
Hi,
Both crypt and sha1 functions use a one-way algorithm. It means you can use them to encrypt the password or other value, but there is no decrypt function.
1 answer