The branch OpenSSL_1_0_2-stable has been updated
       via  d9a38e859dfe30a112c421dc7b32821370efd805 (commit)
      from  20d2aaf22e54d07ead144c5e79fdaf6903cdbf2d (commit)


- Log -----------------------------------------------------------------
commit d9a38e859dfe30a112c421dc7b32821370efd805
Author: Hubert Kario <[email protected]>
Date:   Fri Sep 29 15:40:43 2017 +0200

    doc: note that the BN_new() initialises the BIGNUM
    
    BN_new() and BN_secure_new() not only allocate memory, but also
    initialise it to deterministic value - 0.
    
    Document that behaviour to make it explicit
    
    backport from #4438
    
    Reviewed-by: Richard Levitte <[email protected]>
    Reviewed-by: Rich Salz <[email protected]>
    (Merged from https://github.com/openssl/openssl/pull/4443)

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

Summary of changes:
 doc/crypto/BN_new.pod | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/doc/crypto/BN_new.pod b/doc/crypto/BN_new.pod
index 413a1ea..d446603 100644
--- a/doc/crypto/BN_new.pod
+++ b/doc/crypto/BN_new.pod
@@ -34,7 +34,8 @@ If B<a> is NULL, nothing is done.
 
 =head1 RETURN VALUES
 
-BN_new() returns a pointer to the B<BIGNUM>. If the allocation fails,
+BN_new() returns a pointer to the B<BIGNUM> initialised to the value 0.
+If the allocation fails,
 it returns B<NULL> and sets an error code that can be obtained
 by L<ERR_get_error(3)|ERR_get_error(3)>.
 
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to