Symbol: EVP_RAND_CTX_new
crypto/openssl/crypto/rand/rand_lib.c
634
ctx = EVP_RAND_CTX_new(rand, NULL);
crypto/openssl/crypto/rand/rand_lib.c
690
ctx = EVP_RAND_CTX_new(rand, parent);
crypto/openssl/crypto/rand/rand_lib.c
741
ctx = EVP_RAND_CTX_new(rand, parent);
crypto/openssl/fuzz/provider.c
500
if (!(ctx = EVP_RAND_CTX_new(evp_rand, NULL))) {
crypto/openssl/include/openssl/evp.h
1299
EVP_RAND_CTX *EVP_RAND_CTX_new(EVP_RAND *rand, EVP_RAND_CTX *parent);
crypto/openssl/providers/fips/self_test_kats.c
1042
parent_rand = EVP_RAND_CTX_new(rand, NULL);
crypto/openssl/providers/fips/self_test_kats.c
1056
kat_rand = EVP_RAND_CTX_new(rand, parent_rand);
crypto/openssl/providers/fips/self_test_kats.c
1131
main_rand = EVP_RAND_CTX_new(rand, NULL);
crypto/openssl/providers/fips/self_test_kats.c
310
test = EVP_RAND_CTX_new(rand, NULL);
crypto/openssl/providers/fips/self_test_kats.c
324
drbg = EVP_RAND_CTX_new(rand, test);
crypto/openssl/test/acvp_test.c
1590
|| !TEST_ptr(parent = EVP_RAND_CTX_new(rand, NULL)))
crypto/openssl/test/acvp_test.c
1602
|| !TEST_ptr(ctx = EVP_RAND_CTX_new(rand, parent)))
crypto/openssl/test/drbgtest.c
789
|| !TEST_ptr(drbg = EVP_RAND_CTX_new(rand, parent))
crypto/openssl/test/evp_extra_test.c
4360
ctx = EVP_RAND_CTX_new(rand, NULL);
crypto/openssl/test/evp_test.c
3556
rdata->parent = EVP_RAND_CTX_new(rand, NULL);
crypto/openssl/test/evp_test.c
3568
rdata->ctx = EVP_RAND_CTX_new(rand, rdata->parent);
crypto/openssl/test/rand_test.c
123
|| !TEST_ptr(parent = EVP_RAND_CTX_new(parent_alg, NULL))
crypto/openssl/test/rand_test.c
124
|| !TEST_ptr(crngt = EVP_RAND_CTX_new(crngt_alg, parent))