aboutsummaryrefslogtreecommitdiff
path: root/crypto/evp/e_bf.c
diff options
context:
space:
mode:
authorBenjamin Kaduk <bkaduk@akamai.com>2020-07-02 14:12:33 -0700
committerBenjamin Kaduk <bkaduk@akamai.com>2020-08-11 07:07:58 -0700
commit2f5c405a1694220cca7be8cd96958c1c1245f0ed (patch)
tree746b575781af4a6881efbec03ff149ec817d983e /crypto/evp/e_bf.c
parentd91f902d73689c8a8c1bf684ff9d244197f8c7b3 (diff)
downloadopenssl-2f5c405a1694220cca7be8cd96958c1c1245f0ed.zip
openssl-2f5c405a1694220cca7be8cd96958c1c1245f0ed.tar.gz
openssl-2f5c405a1694220cca7be8cd96958c1c1245f0ed.tar.bz2
Use local IV storage in EVP BLOCK_* macros
Inline the pre-13273237a65d46186b6bea0b51aec90670d4598a versions of EVP_CIPHER_CTX_iv(), EVP_CIPHER_CTX_original_iv(), and EVP_CIPHER_CTX_iv_noconst() in evp.h. These macros are internal-only, used to implement legacy libcrypto EVP ciphers, with no real provider involvement. Accordingly, just use the EVP_CIPHER_CTX storage directly and don't try to reach into a provider-side context. This does necessitate including evp_local.h in several more files. Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/12233)
Diffstat (limited to 'crypto/evp/e_bf.c')
-rw-r--r--crypto/evp/e_bf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/evp/e_bf.c b/crypto/evp/e_bf.c
index c9ca56d..9e240d1 100644
--- a/crypto/evp/e_bf.c
+++ b/crypto/evp/e_bf.c
@@ -20,6 +20,7 @@
# include "crypto/evp.h"
# include <openssl/objects.h>
# include <openssl/blowfish.h>
+# include "evp_local.h"
static int bf_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
const unsigned char *iv, int enc);