The branch OpenSSL_1_0_0-stable has been updated
       via  895c1b79dd7a76caea46d3185c8c2d3a27506b9d (commit)
      from  86fecb23df64a87dc9833f8d88f7c3f9c704f6b9 (commit)


- Log -----------------------------------------------------------------
commit 895c1b79dd7a76caea46d3185c8c2d3a27506b9d
Author: Loganaden Velvindron <[email protected]>
Date:   Fri Jul 31 13:20:16 2015 -0400

    Clear BN-mont values when free'ing it.
    
    From a CloudFlare patch.
    
    Reviewed-by: Dr. Stephen Henson <[email protected]>
    (cherry picked from commit 1a586b3942de1c0bd64203d09385d5e74f499d8d)

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

Summary of changes:
 crypto/bn/bn_mont.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/crypto/bn/bn_mont.c b/crypto/bn/bn_mont.c
index bab8dfe..61c70f0 100644
--- a/crypto/bn/bn_mont.c
+++ b/crypto/bn/bn_mont.c
@@ -427,9 +427,9 @@ void BN_MONT_CTX_free(BN_MONT_CTX *mont)
     if (mont == NULL)
         return;
 
-    BN_free(&(mont->RR));
-    BN_free(&(mont->N));
-    BN_free(&(mont->Ni));
+    BN_clear_free(&(mont->RR));
+    BN_clear_free(&(mont->N));
+    BN_clear_free(&(mont->Ni));
     if (mont->flags & BN_FLG_MALLOCED)
         OPENSSL_free(mont);
 }
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to