[openssl-commits] [openssl] OpenSSL_1_1_1-stable update

Richard Levitte levitte at openssl.org
Tue Oct 23 08:57:08 UTC 2018


The branch OpenSSL_1_1_1-stable has been updated
       via  28361a0b821d36e3b19271b0a7909d5355b0990c (commit)
      from  ece482ff3ad958872ab011dc3e9af49ecb238ec8 (commit)


- Log -----------------------------------------------------------------
commit 28361a0b821d36e3b19271b0a7909d5355b0990c
Author: Richard Levitte <levitte at openssl.org>
Date:   Tue Oct 23 10:15:12 2018 +0200

    RAND: ensure INT32_MAX is defined
    
    This value is used to set DRBG_MAX_LENGTH
    
    Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre at ncp-e.com>
    (Merged from https://github.com/openssl/openssl/pull/7467)
    
    (cherry picked from commit f81b043ad856d8b9af5239a4978f8bd4b965dab9)

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

Summary of changes:
 crypto/rand/rand_lcl.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/crypto/rand/rand_lcl.h b/crypto/rand/rand_lcl.h
index 5d9fb13..38614a8 100644
--- a/crypto/rand/rand_lcl.h
+++ b/crypto/rand/rand_lcl.h
@@ -17,6 +17,8 @@
 # include <openssl/ec.h>
 # include <openssl/rand_drbg.h>
 
+# include "internal/numbers.h"
+
 /* How many times to read the TSC as a randomness source. */
 # define TSC_READ_COUNT                 4
 


More information about the openssl-commits mailing list