mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
Allow reseed interval to be set.
This commit is contained in:
parent
2b1f17f83f
commit
a5799bdc48
@ -500,6 +500,11 @@ void FIPS_drbg_set_check_interval(DRBG_CTX *dctx, int interval)
|
||||
dctx->health_check_interval = interval;
|
||||
}
|
||||
|
||||
void FIPS_drbg_set_reseed_interval(DRBG_CTX *dctx, int interval)
|
||||
{
|
||||
dctx->reseed_interval = interval;
|
||||
}
|
||||
|
||||
static int drbg_stick = 0;
|
||||
|
||||
void FIPS_drbg_stick(void)
|
||||
|
@ -113,6 +113,7 @@ void FIPS_drbg_set_app_data(DRBG_CTX *ctx, void *app_data);
|
||||
size_t FIPS_drbg_get_blocklength(DRBG_CTX *dctx);
|
||||
int FIPS_drbg_get_strength(DRBG_CTX *dctx);
|
||||
void FIPS_drbg_set_check_interval(DRBG_CTX *dctx, int interval);
|
||||
void FIPS_drbg_set_reseed_interval(DRBG_CTX *dctx, int interval);
|
||||
|
||||
DRBG_CTX *FIPS_get_default_drbg(void);
|
||||
const RAND_METHOD *FIPS_drbg_method(void);
|
||||
|
Loading…
Reference in New Issue
Block a user