summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernd Edlinger <bernd.edlinger@hotmail.de>2019-03-17 10:02:07 +0100
committerBernd Edlinger <bernd.edlinger@hotmail.de>2019-03-17 10:02:07 +0100
commitdbf71ae457dfa5632518612b58efccd40f528f26 (patch)
treed390116bf7cf8f5b1fe69204c17d8423c9dc7f52
parent6555a8941bd6be5790d3b45c41de23234a8e527f (diff)
Clear the secret point in ecdh_compute_key
Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/8502)
-rw-r--r--crypto/ecdh/ech_ossl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ecdh/ech_ossl.c b/crypto/ecdh/ech_ossl.c
index d3b05247fe..8b69ce5ba4 100644
--- a/crypto/ecdh/ech_ossl.c
+++ b/crypto/ecdh/ech_ossl.c
@@ -207,7 +207,7 @@ static int ecdh_compute_key(void *out, size_t outlen, const EC_POINT *pub_key,
err:
if (tmp)
- EC_POINT_free(tmp);
+ EC_POINT_clear_free(tmp);
if (ctx)
BN_CTX_end(ctx);
if (ctx)