(PHP 4 >= 4.0.2, PHP 5)
mcrypt_decrypt — Decrypts crypttext with given parameters
$cipher
, string $key
, string $data
, string $mode
[, string $iv
] )
Decrypts the data
and returns the unencrypted data.
cipher
Una din constantele MCRYPT_ciphername
sau denumirea algoritmului ca șir de caractere.
key
The key with which the data was encrypted. If it's smaller than the required keysize, it is padded with '\0'.
data
The data that will be decrypted with the given cipher
and mode
. If the size of the data is not n * blocksize,
the data will be padded with '\0'.
mode
Una din constantele MCRYPT_MODE_modename
sau unul din
șirurile de caractere: "ecb", "cbc", "cfb", "ofb", "nofb" sau "stream".
iv
Este utilizat pentru inițializare în modurile CBC, CFB, OFB și în unii algoritmi în mod STREAM. Dacă nu furnizați un IV atunci când este necesar pentru un algoritm, funcția emite o avertizare și utilizează un IV cu toți octeții stabiliți la valoarea "\0".
Returns the decrypted data as a string.