RAND_pseudo_bytes() is deprecated in openssl 1.1.0

personal/stbuehler/mod-csrf
Glenn Strauss 7 years ago
parent f9737e50a6
commit 64a7b64c2b

@ -151,10 +151,12 @@ int li_rand (void)
{
/* randomness *is not* cryptographically strong */
/* (attempt to use better mechanisms to replace the more portable rand()) */
#ifdef USE_OPENSSL
#ifdef USE_OPENSSL /* (RAND_pseudo_bytes() is deprecated in openssl 1.1.0) */
#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
int i;
if (-1 != RAND_pseudo_bytes((unsigned char *)&i, sizeof(i))) return i;
#endif
#endif
#ifdef HAVE_ARC4RANDOM_BUF
return (int)arc4random();
#elif defined(HAVE_SRANDOM)

Loading…
Cancel
Save