EVP_RAND_CTX_new
ctx = EVP_RAND_CTX_new(rand, NULL);
ctx = EVP_RAND_CTX_new(rand, parent);
ctx = EVP_RAND_CTX_new(rand, parent);
if (!(ctx = EVP_RAND_CTX_new(evp_rand, NULL))) {
EVP_RAND_CTX *EVP_RAND_CTX_new(EVP_RAND *rand, EVP_RAND_CTX *parent);
parent_rand = EVP_RAND_CTX_new(rand, NULL);
kat_rand = EVP_RAND_CTX_new(rand, parent_rand);
main_rand = EVP_RAND_CTX_new(rand, NULL);
test = EVP_RAND_CTX_new(rand, NULL);
drbg = EVP_RAND_CTX_new(rand, test);
|| !TEST_ptr(parent = EVP_RAND_CTX_new(rand, NULL)))
|| !TEST_ptr(ctx = EVP_RAND_CTX_new(rand, parent)))
|| !TEST_ptr(drbg = EVP_RAND_CTX_new(rand, parent))
ctx = EVP_RAND_CTX_new(rand, NULL);
rdata->parent = EVP_RAND_CTX_new(rand, NULL);
rdata->ctx = EVP_RAND_CTX_new(rand, rdata->parent);
|| !TEST_ptr(parent = EVP_RAND_CTX_new(parent_alg, NULL))
|| !TEST_ptr(crngt = EVP_RAND_CTX_new(crngt_alg, parent))