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 /ssl/s3_enc.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 'ssl/s3_enc.c')
-rw-r--r-- | ssl/s3_enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/s3_enc.c b/ssl/s3_enc.c index 833fea83c1..52d389ee0b 100644 --- a/ssl/s3_enc.c +++ b/ssl/s3_enc.c @@ -275,7 +275,7 @@ int ssl3_change_cipher_state(SSL *s, int which) s->session->key_arg_length=0; - EVP_CipherInit(dd,c,key,iv,(which & SSL3_CC_WRITE)); + EVP_CipherInit_ex(dd,c,NULL,key,iv,(which & SSL3_CC_WRITE)); memset(&(exp_key[0]),0,sizeof(exp_key)); memset(&(exp_iv[0]),0,sizeof(exp_iv)); |