Latest update.
This commit is contained in:
+47
-32
@@ -115,6 +115,9 @@ static RAND_DRBG *rand_drbg_new(OPENSSL_CTX *ctx,
|
||||
unsigned int flags,
|
||||
RAND_DRBG *parent);
|
||||
|
||||
static int rand_drbg_set(RAND_DRBG *drbg, int type, unsigned int flags);
|
||||
static int rand_drbg_init_method(RAND_DRBG *drbg);
|
||||
|
||||
static int is_ctr(int type)
|
||||
{
|
||||
switch (type) {
|
||||
@@ -341,8 +344,11 @@ void *RAND_DRBG_get_callback_data(RAND_DRBG *drbg)
|
||||
*/
|
||||
int RAND_DRBG_set(RAND_DRBG *drbg, int type, unsigned int flags)
|
||||
{
|
||||
int ret = 1;
|
||||
return rand_drbg_set(drbg, type, flags) && rand_drbg_init_method(drbg);
|
||||
}
|
||||
|
||||
static int rand_drbg_set(RAND_DRBG *drbg, int type, unsigned int flags)
|
||||
{
|
||||
if (type == 0 && flags == 0) {
|
||||
type = rand_drbg_type[RAND_DRBG_TYPE_MASTER];
|
||||
flags = rand_drbg_flags[RAND_DRBG_TYPE_MASTER];
|
||||
@@ -350,7 +356,8 @@ int RAND_DRBG_set(RAND_DRBG *drbg, int type, unsigned int flags)
|
||||
|
||||
/* If set is called multiple times - clear the old one */
|
||||
if (drbg->type != 0 && (type != drbg->type || flags != drbg->flags)) {
|
||||
drbg->meth->uninstantiate(drbg);
|
||||
if (drbg->meth != NULL)
|
||||
drbg->meth->uninstantiate(drbg);
|
||||
rand_pool_free(drbg->adin_pool);
|
||||
drbg->adin_pool = NULL;
|
||||
}
|
||||
@@ -358,29 +365,43 @@ int RAND_DRBG_set(RAND_DRBG *drbg, int type, unsigned int flags)
|
||||
drbg->state = DRBG_UNINITIALISED;
|
||||
drbg->flags = flags;
|
||||
drbg->type = type;
|
||||
drbg->meth = NULL;
|
||||
|
||||
if (type == 0) {
|
||||
/* Uninitialized; that's okay. */
|
||||
drbg->meth = NULL;
|
||||
if (type == 0 || is_ctr(type) || is_digest(type))
|
||||
return 1;
|
||||
} else if (is_ctr(type)) {
|
||||
|
||||
drbg->type = 0;
|
||||
drbg->flags = 0;
|
||||
RANDerr(RAND_F_RAND_DRBG_SET, RAND_R_UNSUPPORTED_DRBG_TYPE);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int rand_drbg_init_method(RAND_DRBG *drbg)
|
||||
{
|
||||
int ret;
|
||||
|
||||
if (drbg->meth != NULL)
|
||||
return 1;
|
||||
|
||||
if (is_ctr(drbg->type)) {
|
||||
ret = drbg_ctr_init(drbg);
|
||||
} else if (is_digest(type)) {
|
||||
if (flags & RAND_DRBG_FLAG_HMAC)
|
||||
} else if (is_digest(drbg->type)) {
|
||||
if (drbg->flags & RAND_DRBG_FLAG_HMAC)
|
||||
ret = drbg_hmac_init(drbg);
|
||||
else
|
||||
ret = drbg_hash_init(drbg);
|
||||
} else {
|
||||
/* other cases should already be excluded */
|
||||
RANDerr(RAND_F_RAND_DRBG_INIT_METHOD, ERR_R_INTERNAL_ERROR);
|
||||
drbg->type = 0;
|
||||
drbg->flags = 0;
|
||||
drbg->meth = NULL;
|
||||
RANDerr(RAND_F_RAND_DRBG_SET, RAND_R_UNSUPPORTED_DRBG_TYPE);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (ret == 0) {
|
||||
drbg->state = DRBG_ERROR;
|
||||
RANDerr(RAND_F_RAND_DRBG_SET, RAND_R_ERROR_INITIALISING_DRBG);
|
||||
RANDerr(RAND_F_RAND_DRBG_INIT_METHOD, RAND_R_ERROR_INITIALISING_DRBG);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
@@ -554,9 +575,17 @@ int RAND_DRBG_instantiate(RAND_DRBG *drbg,
|
||||
{
|
||||
unsigned char *nonce = NULL, *entropy = NULL;
|
||||
size_t noncelen = 0, entropylen = 0;
|
||||
size_t min_entropy = drbg->strength;
|
||||
size_t min_entropylen = drbg->min_entropylen;
|
||||
size_t max_entropylen = drbg->max_entropylen;
|
||||
size_t min_entropy, min_entropylen, max_entropylen;
|
||||
|
||||
if (drbg->meth == NULL && !rand_drbg_init_method(drbg)) {
|
||||
RANDerr(RAND_F_RAND_DRBG_INSTANTIATE,
|
||||
RAND_R_NO_DRBG_IMPLEMENTATION_SELECTED);
|
||||
goto end;
|
||||
}
|
||||
|
||||
min_entropy = drbg->strength;
|
||||
min_entropylen = drbg->min_entropylen;
|
||||
max_entropylen = drbg->max_entropylen;
|
||||
|
||||
if (perslen > drbg->max_perslen) {
|
||||
RANDerr(RAND_F_RAND_DRBG_INSTANTIATE,
|
||||
@@ -564,12 +593,6 @@ int RAND_DRBG_instantiate(RAND_DRBG *drbg,
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (drbg->meth == NULL) {
|
||||
RANDerr(RAND_F_RAND_DRBG_INSTANTIATE,
|
||||
RAND_R_NO_DRBG_IMPLEMENTATION_SELECTED);
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (drbg->state != DRBG_UNINITIALISED) {
|
||||
if (drbg->state == DRBG_ERROR)
|
||||
RANDerr(RAND_F_RAND_DRBG_INSTANTIATE, RAND_R_IN_ERROR_STATE);
|
||||
@@ -648,19 +671,11 @@ int RAND_DRBG_instantiate(RAND_DRBG *drbg,
|
||||
int RAND_DRBG_uninstantiate(RAND_DRBG *drbg)
|
||||
{
|
||||
int index = -1, type, flags;
|
||||
if (drbg->meth == NULL) {
|
||||
drbg->state = DRBG_ERROR;
|
||||
RANDerr(RAND_F_RAND_DRBG_UNINSTANTIATE,
|
||||
RAND_R_NO_DRBG_IMPLEMENTATION_SELECTED);
|
||||
return 0;
|
||||
if (drbg->meth != NULL) {
|
||||
drbg->meth->uninstantiate(drbg);
|
||||
drbg->meth = NULL;
|
||||
}
|
||||
|
||||
/* Clear the entire drbg->ctr struct, then reset some important
|
||||
* members of the drbg->ctr struct (e.g. keysize, df_ks) to their
|
||||
* initial values.
|
||||
*/
|
||||
drbg->meth->uninstantiate(drbg);
|
||||
|
||||
/* The reset uses the default values for type and flags */
|
||||
if (drbg->flags & RAND_DRBG_FLAG_MASTER)
|
||||
index = RAND_DRBG_TYPE_MASTER;
|
||||
@@ -676,7 +691,7 @@ int RAND_DRBG_uninstantiate(RAND_DRBG *drbg)
|
||||
flags = drbg->flags;
|
||||
type = drbg->type;
|
||||
}
|
||||
return RAND_DRBG_set(drbg, type, flags);
|
||||
return rand_drbg_set(drbg, type, flags);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user