We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7e864c1 + ce61f0d commit 6b68797Copy full SHA for 6b68797
1 file changed
src/ssl.c
@@ -26116,6 +26116,10 @@ int wolfSSL_RAND_poll(void)
26116
ret = WOLFSSL_SUCCESS;
26117
}
26118
wc_UnLockMutex(&globalRNGMutex);
26119
+#elif defined(HAVE_INTEL_RDRAND)
26120
+ WOLFSSL_MSG("Not polling with RAND_poll, RDRAND used without "
26121
+ "HAVE_HASHDRBG");
26122
+ ret = WOLFSSL_SUCCESS;
26123
#else
26124
WOLFSSL_MSG("RAND_poll called with HAVE_HASHDRBG not set");
26125
ret = WOLFSSL_FAILURE;
0 commit comments