[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Matt Caswell
matt at openssl.org
Thu Jun 4 11:59:58 UTC 2015
The branch OpenSSL_1_0_2-stable has been updated
via da5fab73255c24e0b6ce8717df2441a03f504939 (commit)
via efd89aa9cc7ed1142be8a4baa49567170bc4626e (commit)
from 4e3dbe37ca39fa68b6949fbde62f3ec0f0584f7e (commit)
- Log -----------------------------------------------------------------
commit da5fab73255c24e0b6ce8717df2441a03f504939
Author: Matt Caswell <matt at openssl.org>
Date: Thu Jun 4 11:18:55 2015 +0100
Remove misleading comment
Remove a comment that suggested further clean up was required.
DH_free() performs the necessary cleanup.
With thanks to the Open Crypto Audit Project for reporting this issue.
Reviewed-by: Rich Salz <rsalz at openssl.org>
(cherry picked from commit f3d889523ee84f1e87e4da0d59e2702a4bee7907)
commit efd89aa9cc7ed1142be8a4baa49567170bc4626e
Author: Matt Caswell <matt at openssl.org>
Date: Thu Jun 4 11:16:16 2015 +0100
Clean premaster_secret for GOST
Ensure OPENSSL_cleanse() is called on the premaster secret value calculated for GOST.
With thanks to the Open Crypto Audit Project for reporting this issue.
Reviewed-by: Rich Salz <rsalz at openssl.org>
(cherry picked from commit b7ee4815f2452c854cc859e8dda88f2673cdddea)
Conflicts:
ssl/s3_srvr.c
-----------------------------------------------------------------------
Summary of changes:
ssl/s3_clnt.c | 2 --
ssl/s3_srvr.c | 1 +
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/ssl/s3_clnt.c b/ssl/s3_clnt.c
index 609b005..c495641 100644
--- a/ssl/s3_clnt.c
+++ b/ssl/s3_clnt.c
@@ -2721,8 +2721,6 @@ int ssl3_send_client_key_exchange(SSL *s)
}
DH_free(dh_clnt);
-
- /* perhaps clean things up a bit EAY EAY EAY EAY */
}
#endif
diff --git a/ssl/s3_srvr.c b/ssl/s3_srvr.c
index de984c8..8885694 100644
--- a/ssl/s3_srvr.c
+++ b/ssl/s3_srvr.c
@@ -2902,6 +2902,7 @@ int ssl3_get_client_key_exchange(SSL *s)
s->
session->master_key,
premaster_secret, 32);
+ OPENSSL_cleanse(premaster_secret, sizeof(premaster_secret));
/* Check if pubkey from client certificate was used */
if (EVP_PKEY_CTX_ctrl
(pkey_ctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 2, NULL) > 0)
More information about the openssl-commits
mailing list