projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7dc584e
)
Add missing EVP_CIPHER_CTX_init call.
author
Dr. Stephen Henson
<steve@openssl.org>
Sat, 18 May 2002 23:42:20 +0000
(23:42 +0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Sat, 18 May 2002 23:42:20 +0000
(23:42 +0000)
crypto/asn1/p5_pbev2.c
patch
|
blob
|
history
diff --git
a/crypto/asn1/p5_pbev2.c
b/crypto/asn1/p5_pbev2.c
index 43dfe09479f2a63d6b6d363bb89c3ddfdeacbd85..91e1c8987d3504c6ce6feac8444573325c2df56a 100644
(file)
--- a/
crypto/asn1/p5_pbev2.c
+++ b/
crypto/asn1/p5_pbev2.c
@@
-116,6
+116,8
@@
X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter,
if (RAND_pseudo_bytes(iv, EVP_CIPHER_iv_length(cipher)) < 0)
goto err;
+ EVP_CIPHER_CTX_init(&ctx);
+
/* Dummy cipherinit to just setup the IV */
EVP_CipherInit_ex(&ctx, cipher, NULL, NULL, iv, 0);
if(EVP_CIPHER_param_to_asn1(&ctx, scheme->parameter) < 0) {