/freebsd/crypto/openssl/crypto/evp/ |
H A D | evp_rand.c | 502 (EVP_RAND_CTX *ctx, unsigned int strength, int prediction_resistance, in evp_rand_instantiate_locked() argument 505 return ctx->meth->instantiate(ctx->algctx, strength, prediction_resistance, in evp_rand_instantiate_locked() 510 int prediction_resistance, in EVP_RAND_instantiate() argument 518 res = evp_rand_instantiate_locked(ctx, strength, prediction_resistance, in EVP_RAND_instantiate() 542 int prediction_resistance, in evp_rand_generate_locked() argument 559 prediction_resistance, addin, addin_len)) { in evp_rand_generate_locked() 567 prediction_resistance = 0; in evp_rand_generate_locked() 573 unsigned int strength, int prediction_resistance, in EVP_RAND_generate() argument 581 prediction_resistance, addin, addin_len); in EVP_RAND_generate() 586 static int evp_rand_reseed_locked(EVP_RAND_CTX *ctx, int prediction_resistance, in evp_rand_reseed_locked() argument [all …]
|
/freebsd/crypto/openssl/providers/implementations/rands/ |
H A D | seed_src.c | 72 int prediction_resistance, in seed_src_instantiate() argument 92 ossl_unused int prediction_resistance, in seed_src_generate() argument 124 ossl_unused int prediction_resistance, in seed_src_reseed() argument 179 int prediction_resistance, in seed_get_seed() argument 204 if (seed_src_generate(vseed, p, bytes_needed, 0, prediction_resistance, in seed_get_seed()
|
H A D | drbg.c | 146 size_t max_len, int prediction_resistance, in ossl_drbg_get_seed() argument 177 drbg->strength, prediction_resistance, in ossl_drbg_get_seed() 196 int prediction_resistance) in get_entropy() argument 204 prediction_resistance); in get_entropy() 247 min_len, max_len, prediction_resistance, in get_entropy() 367 int prediction_resistance, in ossl_prov_drbg_instantiate() argument 458 prediction_resistance); in ossl_prov_drbg_instantiate() 506 int ossl_prov_drbg_reseed(PROV_DRBG *drbg, int prediction_resistance, in ossl_prov_drbg_reseed() argument 586 prediction_resistance); in ossl_prov_drbg_reseed() 621 unsigned int strength, int prediction_resistance, in ossl_prov_drbg_generate() argument [all …]
|
H A D | drbg_local.h | 197 int prediction_resistance, 202 int ossl_prov_drbg_reseed(PROV_DRBG *drbg, int prediction_resistance, 207 unsigned int strength, int prediction_resistance, 256 int prediction_resistance);
|
H A D | drbg_hmac.c | 144 int prediction_resistance, in drbg_hmac_instantiate_wrapper() argument 153 return ossl_prov_drbg_instantiate(drbg, strength, prediction_resistance, in drbg_hmac_instantiate_wrapper() 175 static int drbg_hmac_reseed_wrapper(void *vdrbg, int prediction_resistance, in drbg_hmac_reseed_wrapper() argument 181 return ossl_prov_drbg_reseed(drbg, prediction_resistance, ent, ent_len, in drbg_hmac_reseed_wrapper() 242 int prediction_resistance, const unsigned char *adin, size_t adin_len) in drbg_hmac_generate_wrapper() argument 247 prediction_resistance, adin, adin_len); in drbg_hmac_generate_wrapper()
|
H A D | drbg_hash.c | 267 int prediction_resistance, in drbg_hash_instantiate_wrapper() argument 276 return ossl_prov_drbg_instantiate(drbg, strength, prediction_resistance, in drbg_hash_instantiate_wrapper() 304 static int drbg_hash_reseed_wrapper(void *vdrbg, int prediction_resistance, in drbg_hash_reseed_wrapper() argument 310 return ossl_prov_drbg_reseed(drbg, prediction_resistance, ent, ent_len, in drbg_hash_reseed_wrapper() 354 int prediction_resistance, const unsigned char *adin, size_t adin_len) in drbg_hash_generate_wrapper() argument 359 prediction_resistance, adin, adin_len); in drbg_hash_generate_wrapper()
|
H A D | test_rng.c | 78 int prediction_resistance, in test_rng_instantiate() argument 103 unsigned int strength, int prediction_resistance, in test_rng_generate() argument 116 ossl_unused int prediction_resistance, in test_rng_reseed() argument 232 ossl_unused int prediction_resistance, in test_rng_get_seed() argument
|
H A D | drbg_ctr.c | 327 int prediction_resistance, in drbg_ctr_instantiate_wrapper() argument 336 return ossl_prov_drbg_instantiate(drbg, strength, prediction_resistance, in drbg_ctr_instantiate_wrapper() 355 static int drbg_ctr_reseed_wrapper(void *vdrbg, int prediction_resistance, in drbg_ctr_reseed_wrapper() argument 361 return ossl_prov_drbg_reseed(drbg, prediction_resistance, ent, ent_len, in drbg_ctr_reseed_wrapper() 453 unsigned int strength, int prediction_resistance, in drbg_ctr_generate_wrapper() argument 459 prediction_resistance, adin, adin_len); in drbg_ctr_generate_wrapper()
|
H A D | crngt.c | 105 int prediction_resistance) in ossl_crngt_get_entropy() argument
|
/freebsd/crypto/openssl/fuzz/ |
H A D | fuzz_rand.c | 42 ossl_unused int prediction_resistance, in fuzz_rand_instantiate() argument 60 ossl_unused int prediction_resistance, in fuzz_rand_generate() argument
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | provider-rand.pod | 28 int prediction_resistance, 33 unsigned int strength, int prediction_resistance, 35 int OSSL_FUNC_rand_reseed(void *ctx, int prediction_resistance, 45 int prediction_resistance, 99 security I<strength>. In addition, I<prediction_resistance> can be requested. 111 if I<prediction_resistance> is true, the bytes will be produced after reseeding 124 and I<max_len> inclusive bytes in total. If I<prediction_resistance> is
|
/freebsd/crypto/openssl/test/ |
H A D | provfetchtest.c | 100 int prediction_resistance, in dummy_rand_instantiate() argument 113 unsigned int strength, int prediction_resistance, in dummy_rand_generate() argument
|
H A D | evp_test.c | 2448 int prediction_resistance; member 2581 rdata->prediction_resistance = atoi(value) != 0; in rand_test_parse() 2633 expected->prediction_resistance, z, in rand_test_run() 2646 (expected->ctx, expected->prediction_resistance, in rand_test_run() 2661 strength, expected->prediction_resistance, in rand_test_run() 2675 strength, expected->prediction_resistance, in rand_test_run()
|
/freebsd/crypto/openssl/test/testutil/ |
H A D | fake_random.c | 51 ossl_unused int prediction_resistance, in fake_rand_instantiate() argument 71 unsigned int strength, int prediction_resistance, in fake_rand_generate() argument
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | EVP_RAND.pod | 54 int prediction_resistance, 59 unsigned int strength, int prediction_resistance, 61 int EVP_RAND_reseed(EVP_RAND_CTX *ctx, int prediction_resistance, 132 If I<prediction_resistance> is specified, fresh entropy from a live source 142 If I<prediction_resistance> is specified, fresh entropy from a live source 150 operating system. If I<prediction_resistance> is specified, fresh entropy 335 The use of a nonzero value for the I<prediction_resistance> argument to
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | core_dispatch.h | 463 int prediction_resistance, 469 unsigned int strength, int prediction_resistance, 472 (void *vctx, int prediction_resistance, 501 int prediction_resistance,
|
H A D | evp.h | 1271 int prediction_resistance, 1277 int prediction_resistance, 1279 int EVP_RAND_reseed(EVP_RAND_CTX *ctx, int prediction_resistance,
|
/freebsd/crypto/openssl/providers/fips/ |
H A D | self_test_kats.c | 258 int prediction_resistance = 1; /* Causes a reseed */ in self_test_drbg() local 319 prediction_resistance, in self_test_drbg() 335 prediction_resistance, in self_test_drbg()
|