[openssl] master update

bernd.edlinger at hotmail.de bernd.edlinger at hotmail.de
Mon Mar 18 21:30:11 UTC 2019


The branch master has been updated
       via  1ff2c992c24c330c0d40708b4169b862563d6aab (commit)
      from  5743d1268d455859ed94be8749c4aaac6333c01b (commit)


- Log -----------------------------------------------------------------
commit 1ff2c992c24c330c0d40708b4169b862563d6aab
Author: Bernd Edlinger <bernd.edlinger at hotmail.de>
Date:   Sun Mar 17 09:48:15 2019 +0100

    Clear the secret point in ecdh_simple_compute_key
    
    Reviewed-by: Paul Dale <paul.dale at oracle.com>
    (Merged from https://github.com/openssl/openssl/pull/8501)

-----------------------------------------------------------------------

Summary of changes:
 crypto/ec/ecdh_ossl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/ec/ecdh_ossl.c b/crypto/ec/ecdh_ossl.c
index 40a564f..b63cab9 100644
--- a/crypto/ec/ecdh_ossl.c
+++ b/crypto/ec/ecdh_ossl.c
@@ -112,7 +112,7 @@ int ecdh_simple_compute_key(unsigned char **pout, size_t *poutlen,
     ret = 1;
 
  err:
-    EC_POINT_free(tmp);
+    EC_POINT_clear_free(tmp);
     if (ctx)
         BN_CTX_end(ctx);
     BN_CTX_free(ctx);


More information about the openssl-commits mailing list