From: Dr. Stephen Henson Date: Fri, 17 Jan 2003 00:48:47 +0000 (+0000) Subject: EVP_DecryptInit() should call EVP_CipherInit() not EVP_CipherInit_ex(). X-Git-Tag: BEN_FIPS_TEST_1~38^2~376 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=59ae8c941916a2f8850c59638cb0ee4329d57b3e;p=oweals%2Fopenssl.git EVP_DecryptInit() should call EVP_CipherInit() not EVP_CipherInit_ex(). --- diff --git a/crypto/evp/evp_enc.c b/crypto/evp/evp_enc.c index 66c48d1431..ccfcc7e1b1 100644 --- a/crypto/evp/evp_enc.c +++ b/crypto/evp/evp_enc.c @@ -236,7 +236,7 @@ int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *imp int EVP_DecryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, const unsigned char *key, const unsigned char *iv) { - return EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, 0); + return EVP_CipherInit(ctx, cipher, key, iv, 0); } int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl,