hello
in php i can encrypt in md5 formula
but how i can encrypt in lm/des/md4 formula
any idea ?
The [man]mcrypt[/man] extension can handle DES encryption/decryption. Don't know about the others--you may need to search for 3rd-party scripts if you really need them.
thanks NogDog
but what about sha265 ?
You mean sha256. Look at the [man]hash[/man] function (encrypting is not the same as hashing. MD5 and SHA-256 are hash algorithms, DES is an encryption algorithm).