Home
last modified time | relevance | path

Searched refs:reseed_interval (Results 1 – 8 of 8) sorted by relevance

/third_party/mbedtls/library/
Dhmac_drbg.c56 ctx->reseed_interval = MBEDTLS_HMAC_DRBG_RESEED_INTERVAL; in mbedtls_hmac_drbg_init()
312 ctx->reseed_interval = interval; in mbedtls_hmac_drbg_set_reseed_interval()
340 ctx->reseed_counter > ctx->reseed_interval ) ) in mbedtls_hmac_drbg_random_with_add()
426 ctx->reseed_interval = MBEDTLS_HMAC_DRBG_RESEED_INTERVAL; in mbedtls_hmac_drbg_free()
Dctr_drbg.c58 ctx->reseed_interval = MBEDTLS_CTR_DRBG_RESEED_INTERVAL; in mbedtls_ctr_drbg_init()
77 ctx->reseed_interval = MBEDTLS_CTR_DRBG_RESEED_INTERVAL; in mbedtls_ctr_drbg_free()
122 ctx->reseed_interval = interval; in mbedtls_ctr_drbg_set_reseed_interval()
521 if( ctx->reseed_counter > ctx->reseed_interval || in mbedtls_ctr_drbg_random_with_add()
/third_party/openssl/providers/implementations/rands/
Ddrbg.c659 if (drbg->reseed_interval > 0) { in ossl_prov_drbg_generate()
660 if (drbg->generate_counter >= drbg->reseed_interval) in ossl_prov_drbg_generate()
822 drbg->reseed_interval = RESEED_INTERVAL; in ossl_rand_drbg_new()
901 if (p != NULL && !OSSL_PARAM_set_uint(p, drbg->reseed_interval)) in ossl_drbg_get_ctx_params()
927 if (p != NULL && !OSSL_PARAM_get_uint(p, &drbg->reseed_interval)) in ossl_drbg_set_ctx_params()
Ddrbg_local.h145 unsigned int reseed_interval; member
/third_party/mbedtls/include/mbedtls/
Dhmac_drbg.h98 int MBEDTLS_PRIVATE(reseed_interval); /*!< reseed interval */
Dctr_drbg.h189 int MBEDTLS_PRIVATE(reseed_interval); /*!< The reseed interval.
/third_party/openssl/crypto/rand/
Drand_lib.c556 unsigned int reseed_interval, in rand_new_drbg() argument
595 &reseed_interval); in rand_new_drbg()
/third_party/openssl/doc/man7/
DEVP_RAND.pod175 certain threshold, the so called I<reseed_interval>.
176 This behaviour can be disabled by setting the I<reseed_interval> to 0.