nonce: Allow overriding the RNG quality used to generate nonces
Usually, changing this won't be necessary (actually, some plugins specifically use different DRGBs for RNG_WEAK in order to separate the public nonces from random data used for e.g. DH). But for experts with special plugin configurations this might be more flexible and avoids code changes.
This commit is contained in:
@@ -43,7 +43,7 @@ METHOD(plugin_t, get_features, int,
|
||||
static plugin_feature_t f[] = {
|
||||
PLUGIN_REGISTER(NONCE_GEN, nonce_nonceg_create),
|
||||
PLUGIN_PROVIDE(NONCE_GEN),
|
||||
PLUGIN_DEPENDS(RNG, RNG_WEAK),
|
||||
PLUGIN_DEPENDS(RNG, NONCE_RNG_QUALITY),
|
||||
};
|
||||
*features = f;
|
||||
return countof(f);
|
||||
|
||||
Reference in New Issue
Block a user