crypto_evp_decrypt()#
Syntax
crypto_evp_decrypt( ciphername, key, iv, encrypted, plaintext var )
Returns#
Return 1 on success, 0 on failure.
Parameters#
Parameter | Description |
---|---|
ciphername |
The OpenSSL identifier of the cipher, such as “bf-cbc” or “des-ede3-cbc”. |
key |
The key used for encryption. |
iv |
The initialization vector used for encryption. returned by crypto_cipher_iv_length(). |
encrypted |
The ciphertext to be decrypted |
plaintext |
[output] Receives the plaintext |