diff options
author | Jack Lloyd <[email protected]> | 2016-11-18 15:08:56 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-11-18 15:08:56 -0500 |
commit | dc94557f0f72766dbfba5e129da25dd0111fa564 (patch) | |
tree | f2bb54c05769d3218abf3ba29e8bc9909445e4bd /src/lib/pubkey/xmss | |
parent | 2031d93f0c07e0f310cb1366a07a8350301f19b0 (diff) |
Don't force HMAC_DRBG to be enabled
No need to strictly require it, and some applications may only want
system RNG or RDRAND.
Diffstat (limited to 'src/lib/pubkey/xmss')
-rw-r--r-- | src/lib/pubkey/xmss/xmss_privatekey.h | 2 | ||||
-rw-r--r-- | src/lib/pubkey/xmss/xmss_wots_publickey.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/pubkey/xmss/xmss_privatekey.h b/src/lib/pubkey/xmss/xmss_privatekey.h index 064d899a8..a0abb87e7 100644 --- a/src/lib/pubkey/xmss/xmss_privatekey.h +++ b/src/lib/pubkey/xmss/xmss_privatekey.h @@ -45,7 +45,7 @@ class BOTAN_DLL XMSS_PrivateKey : public virtual XMSS_PublicKey, /** * Creates a new XMSS private key for the chosen XMSS signature method. * New seeds for public/private key and pseudo random function input are - * generated using AutoSeeded_RNG. The appropriate WOTS signature method + * generated using the provided RNG. The appropriate WOTS signature method * will be automatically set based on the chosen XMSS signature method. * * @param xmss_algo_id Identifier for the selected XMSS signature method. diff --git a/src/lib/pubkey/xmss/xmss_wots_publickey.h b/src/lib/pubkey/xmss/xmss_wots_publickey.h index a3e5232e8..bf3a8110d 100644 --- a/src/lib/pubkey/xmss/xmss_wots_publickey.h +++ b/src/lib/pubkey/xmss/xmss_wots_publickey.h @@ -11,7 +11,6 @@ #include <cstddef> #include <string> #include <vector> -#include <botan/auto_rng.h> #include <botan/alg_id.h> #include <botan/asn1_oid.h> #include <botan/assert.h> |