Lines Matching defs:vrng
45 static void fake_rand_freectx(void *vrng)
47 OPENSSL_free(vrng);
50 static int fake_rand_instantiate(void *vrng, ossl_unused unsigned int strength,
56 FAKE_RAND *frng = (FAKE_RAND *)vrng;
62 static int fake_rand_uninstantiate(void *vrng)
64 FAKE_RAND *frng = (FAKE_RAND *)vrng;
70 static int fake_rand_generate(void *vrng, unsigned char *out, size_t outlen,
74 FAKE_RAND *frng = (FAKE_RAND *)vrng;
91 static int fake_rand_enable_locking(void *vrng)
96 static int fake_rand_get_ctx_params(ossl_unused void *vrng, OSSL_PARAM params[])
98 FAKE_RAND *frng = (FAKE_RAND *)vrng;
115 static const OSSL_PARAM *fake_rand_gettable_ctx_params(ossl_unused void *vrng,