diff options
author | 2014-04-20 12:48:19 +0000 | |
---|---|---|
committer | 2014-04-20 12:48:19 +0000 | |
commit | aa8444d1b1189fd1265d520d7e58af29deb94156 (patch) | |
tree | 904756879c67d51a6a1adad95dfe645be13dcce7 /lib/libssl/src/ssl/s3_enc.c | |
parent | return after error instead of plowing ahead. noticed by mancha1 at zoho (diff) | |
download | wireguard-openbsd-aa8444d1b1189fd1265d520d7e58af29deb94156.tar.xz wireguard-openbsd-aa8444d1b1189fd1265d520d7e58af29deb94156.zip |
Chop off more SSLv2 tentacles and start fixing and noting y2038 issues.
APIs that pass times as longs will have to change at some point...
Bump major on both libcrypto and libssl.
ok tedu@
Diffstat (limited to 'lib/libssl/src/ssl/s3_enc.c')
-rw-r--r-- | lib/libssl/src/ssl/s3_enc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libssl/src/ssl/s3_enc.c b/lib/libssl/src/ssl/s3_enc.c index 4d12631694f..2b02c5ba06b 100644 --- a/lib/libssl/src/ssl/s3_enc.c +++ b/lib/libssl/src/ssl/s3_enc.c @@ -361,8 +361,6 @@ ssl3_change_cipher_state(SSL *s, int which) } } - s->session->key_arg_length = 0; - EVP_CipherInit_ex(dd, c, NULL, key, iv,(which & SSL3_CC_WRITE)); OPENSSL_cleanse(&(exp_key[0]), sizeof(exp_key)); |