You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi all, I have an UEFI application that uses curl. However, in the snippet of code below, the RAND_STATUS always got zero from openssl services. I'm not sure if my configuration of the openssl services in edk2 is correct(maybe something did not set properly). Any comments on this?
BTW, the version of openssl used is 3.0.9 in cryptoPkg.
/* curl/lib/vtls/openssl.c */
/*
* rand_enough() returns TRUE if we have seeded the random engine properly.
*/
static bool rand_enough(void)
{
return (0 != RAND_status()) ? TRUE : FALSE;
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi all, I have an UEFI application that uses curl. However, in the snippet of code below, the
RAND_STATUS
always got zero from openssl services. I'm not sure if my configuration of the openssl services in edk2 is correct(maybe something did not set properly). Any comments on this?BTW, the version of openssl used is 3.0.9 in cryptoPkg.
Beta Was this translation helpful? Give feedback.
All reactions