diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2001-10-17 02:37:12 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2001-10-17 02:37:12 +0200 |
commit | 581f1c84940d77451c2592e9fa470893f6c3c3eb (patch) | |
tree | 33ebc8fc45b20aceff7589249bbc9a12282d543d /crypto/pkcs12/p12_crpt.c | |
parent | Flush buffers to prevent mixed output (Adam Back <adam@cypherspace.org>). (diff) | |
download | openssl-581f1c84940d77451c2592e9fa470893f6c3c3eb.tar.xz openssl-581f1c84940d77451c2592e9fa470893f6c3c3eb.zip |
Modify EVP cipher behaviour in a similar way
to digests to retain compatibility.
Diffstat (limited to 'crypto/pkcs12/p12_crpt.c')
-rw-r--r-- | crypto/pkcs12/p12_crpt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/pkcs12/p12_crpt.c b/crypto/pkcs12/p12_crpt.c index 2a6de32d81..97be6a5fb5 100644 --- a/crypto/pkcs12/p12_crpt.c +++ b/crypto/pkcs12/p12_crpt.c @@ -117,7 +117,7 @@ int PKCS12_PBE_keyivgen (EVP_CIPHER_CTX *ctx, const char *pass, int passlen, return 0; } PBEPARAM_free(pbe); - EVP_CipherInit(ctx, cipher, key, iv, en_de); + EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, en_de); memset(key, 0, EVP_MAX_KEY_LENGTH); memset(iv, 0, EVP_MAX_IV_LENGTH); return 1; |