diff options
author | Richard Levitte <levitte@openssl.org> | 2018-12-09 14:20:30 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2018-12-10 10:07:15 +0100 |
commit | f2f734d4f9e34643a1d3e5b79d2447cd643519f8 (patch) | |
tree | 4800c9d3124d8e6d6d400ff00f639769b0bf6a02 /crypto/evp | |
parent | Prevent calling decryption in an encryption context and vice versa (diff) | |
download | openssl-f2f734d4f9e34643a1d3e5b79d2447cd643519f8.tar.xz openssl-f2f734d4f9e34643a1d3e5b79d2447cd643519f8.zip |
make update
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/7852)
Diffstat (limited to 'crypto/evp')
-rw-r--r-- | crypto/evp/evp_err.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/evp/evp_err.c b/crypto/evp/evp_err.c index 07be1ab0cd..14e5ed6764 100644 --- a/crypto/evp/evp_err.c +++ b/crypto/evp/evp_err.c @@ -51,6 +51,8 @@ static const ERR_STRING_DATA EVP_str_functs[] = { {ERR_PACK(ERR_LIB_EVP, EVP_F_EVP_DECRYPTUPDATE, 0), "EVP_DecryptUpdate"}, {ERR_PACK(ERR_LIB_EVP, EVP_F_EVP_DIGESTFINALXOF, 0), "EVP_DigestFinalXOF"}, {ERR_PACK(ERR_LIB_EVP, EVP_F_EVP_DIGESTINIT_EX, 0), "EVP_DigestInit_ex"}, + {ERR_PACK(ERR_LIB_EVP, EVP_F_EVP_ENCRYPTDECRYPTUPDATE, 0), + "evp_EncryptDecryptUpdate"}, {ERR_PACK(ERR_LIB_EVP, EVP_F_EVP_ENCRYPTFINAL_EX, 0), "EVP_EncryptFinal_ex"}, {ERR_PACK(ERR_LIB_EVP, EVP_F_EVP_ENCRYPTUPDATE, 0), "EVP_EncryptUpdate"}, |