Symbol: EVP_RAND_fetch
crypto/openssl/crypto/rand/rand_lib.c
629
rand = EVP_RAND_fetch(libctx, name, propq);
crypto/openssl/crypto/rand/rand_lib.c
684
rand = EVP_RAND_fetch(libctx, name, dgbl->rng_propq);
crypto/openssl/crypto/rand/rand_lib.c
736
rand = EVP_RAND_fetch(libctx, "CRNG-TEST", "-fips");
crypto/openssl/include/openssl/evp.h
1289
EVP_RAND *EVP_RAND_fetch(OSSL_LIB_CTX *libctx, const char *algorithm,
crypto/openssl/providers/fips/self_test.c
394
if ((testrand = EVP_RAND_fetch(st->libctx, "TEST-RAND", NULL)) == NULL
crypto/openssl/providers/fips/self_test_kats.c
1038
rand = EVP_RAND_fetch(ctx, "TEST-RAND", NULL);
crypto/openssl/providers/fips/self_test_kats.c
1052
rand = EVP_RAND_fetch(ctx, "HASH-DRBG", NULL);
crypto/openssl/providers/fips/self_test_kats.c
1127
rand = EVP_RAND_fetch(libctx, "TEST-RAND", NULL);
crypto/openssl/providers/fips/self_test_kats.c
306
rand = EVP_RAND_fetch(libctx, "TEST-RAND", NULL);
crypto/openssl/providers/fips/self_test_kats.c
320
rand = EVP_RAND_fetch(libctx, t->algorithm, NULL);
crypto/openssl/test/acvp_test.c
1589
if (!TEST_ptr(rand = EVP_RAND_fetch(libctx, "TEST-RAND", "-fips"))
crypto/openssl/test/acvp_test.c
1601
if (!TEST_ptr(rand = EVP_RAND_fetch(libctx, tst->drbg_name, ""))
crypto/openssl/test/drbgtest.c
788
if (!TEST_ptr(rand = EVP_RAND_fetch(NULL, "CTR-DRBG", NULL))
crypto/openssl/test/evp_extra_test.c
4358
|| !TEST_ptr(rand = EVP_RAND_fetch(testctx, "TEST-RAND", testpropq)))
crypto/openssl/test/evp_test.c
3553
rand = EVP_RAND_fetch(libctx, "TEST-RAND", "-fips");
crypto/openssl/test/evp_test.c
3565
rand = EVP_RAND_fetch(libctx, name, propquery);
crypto/openssl/test/rand_test.c
121
if (!TEST_ptr(parent_alg = EVP_RAND_fetch(NULL, "TEST-RAND", "-fips"))
crypto/openssl/test/rand_test.c
122
|| !TEST_ptr(crngt_alg = EVP_RAND_fetch(NULL, "CRNG-TEST", "-fips"))