Fabcoin Core
0.16.2
P2P Digital Currency
|
Interface for NIST DRBGs from SP 800-90A. More...
#include <drbg.h>
Classes | |
class | Err |
Exception thrown when a NIST DRBG encounters an error. More... | |
Public Member Functions | |
virtual | ~NIST_DRBG () |
virtual bool | CanIncorporateEntropy () const |
Determines if a generator can accept additional entropy. More... | |
virtual void | IncorporateEntropy (const byte *input, size_t length)=0 |
Update RNG state with additional unpredictable values. More... | |
virtual void | IncorporateEntropy (const byte *entropy, size_t entropyLength, const byte *additional, size_t additionaLength)=0 |
Update RNG state with additional unpredictable values. More... | |
virtual void | GenerateBlock (byte *output, size_t size)=0 |
Generate random array of bytes. More... | |
virtual void | GenerateBlock (const byte *additional, size_t additionaLength, byte *output, size_t size)=0 |
Generate random array of bytes. More... | |
virtual unsigned int | GetSecurityStrength () const =0 |
Provides the security strength. More... | |
virtual unsigned int | GetSeedLength () const =0 |
Provides the seed length. More... | |
virtual unsigned int | GetMinEntropy () const =0 |
Provides the minimum entropy size. More... | |
virtual unsigned int | GetMaxEntropy () const =0 |
Provides the maximum entropy size. More... | |
virtual unsigned int | GetMinNonce () const =0 |
Provides the minimum nonce size. More... | |
virtual unsigned int | GetMaxNonce () const =0 |
Provides the maximum nonce size. More... | |
virtual unsigned int | GetMaxBytesPerRequest () const =0 |
Provides the maximum size of a request to GenerateBlock. More... | |
virtual unsigned int | GetMaxRequestBeforeReseed () const =0 |
Provides the maximum number of requests before a reseed. More... | |
Public Member Functions inherited from RandomNumberGenerator | |
virtual | ~RandomNumberGenerator () |
virtual byte | GenerateByte () |
Generate new random byte and return it. More... | |
virtual unsigned int | GenerateBit () |
Generate new random bit and return it. More... | |
virtual word32 | GenerateWord32 (word32 min=0, word32 max=0xffffffffUL) |
Generate a random 32 bit word in the range min to max, inclusive. More... | |
virtual void | GenerateIntoBufferedTransformation (BufferedTransformation &target, const std::string &channel, lword length) |
Generate random bytes into a BufferedTransformation. More... | |
virtual void | DiscardBytes (size_t n) |
Generate and discard n bytes. More... | |
template<class IT > | |
void | Shuffle (IT begin, IT end) |
Randomly shuffle the specified array. More... | |
Public Member Functions inherited from Algorithm | |
virtual | ~Algorithm () |
Algorithm (bool checkSelfTestStatus=true) | |
Interface for all crypto algorithms. More... | |
virtual std::string | AlgorithmName () const |
Provides the name of this algorithm. More... | |
Public Member Functions inherited from Clonable | |
virtual | ~Clonable () |
virtual Clonable * | Clone () const |
Copies this object. More... | |
Protected Member Functions | |
virtual void | DRBG_Instantiate (const byte *entropy, size_t entropyLength, const byte *nonce, size_t nonceLength, const byte *personalization, size_t personalizationLength)=0 |
virtual void | DRBG_Reseed (const byte *entropy, size_t entropyLength, const byte *additional, size_t additionaLength)=0 |
Interface for NIST DRBGs from SP 800-90A.
NIST_DRBG is the base class interface for NIST DRBGs from SP 800-90A Rev 1 (June 2015)
|
inlinevirtual |
Determines if a generator can accept additional entropy.
All NIST_DRBG return true
Reimplemented from RandomNumberGenerator.
|
protectedpure virtual |
Implemented in Hash_DRBG< HASH, STRENGTH, SEEDLENGTH >.
|
protectedpure virtual |
Implemented in Hash_DRBG< HASH, STRENGTH, SEEDLENGTH >.
|
pure virtual |
Generate random array of bytes.
output | the byte buffer |
size | the length of the buffer, in bytes |
NIST_DRBG::Err | if a reseed is required |
NIST_DRBG::Err | if the size exceeds MAXIMUM_BYTES_PER_REQUEST |
Reimplemented from RandomNumberGenerator.
Implemented in Hash_DRBG< HASH, STRENGTH, SEEDLENGTH >.
|
pure virtual |
Generate random array of bytes.
additional | additional input to add to the generator |
additionaLength | the size of the additional input buffer |
output | the byte buffer |
size | the length of the buffer, in bytes |
NIST_DRBG::Err | if a reseed is required |
NIST_DRBG::Err | if the size exceeds MAXIMUM_BYTES_PER_REQUEST |
GenerateBlock() is an overload provided to match NIST requirements. The byte array for additional
input is optional. If present the additional randomness is mixed before generating the output bytes.
Implemented in Hash_DRBG< HASH, STRENGTH, SEEDLENGTH >.
|
pure virtual |
Provides the maximum size of a request to GenerateBlock.
The equivalent class constant is MAXIMUM_BYTES_PER_REQUEST
Implemented in Hash_DRBG< HASH, STRENGTH, SEEDLENGTH >.
|
pure virtual |
Provides the maximum entropy size.
The equivalent class constant is MAXIMUM_ENTROPY
. The bytes must meet NIST SP 800-90B or SP 800-90C requirements. MAXIMUM_ENTROPY
has been reduced from 235 to INT_MAX
to fit the underlying C++ datatype.
Implemented in Hash_DRBG< HASH, STRENGTH, SEEDLENGTH >.
|
pure virtual |
Provides the maximum nonce size.
The equivalent class constant is MAXIMUM_NONCE
. MAXIMUM_NONCE
has been reduced from 235 to INT_MAX
to fit the underlying C++ datatype. If a nonce is not required then MINIMUM_NONCE
is 0. Hash_DRBG
does not require a nonce, while HMAC_DRBG
and CTR_DRBG
require a nonce.
Implemented in Hash_DRBG< HASH, STRENGTH, SEEDLENGTH >.
|
pure virtual |
Provides the maximum number of requests before a reseed.
The equivalent class constant is MAXIMUM_REQUESTS_BEFORE_RESEED
. MAXIMUM_REQUESTS_BEFORE_RESEED
has been reduced from 248 to INT_MAX
to fit the underlying C++ datatype.
Implemented in Hash_DRBG< HASH, STRENGTH, SEEDLENGTH >.
|
pure virtual |
Provides the minimum entropy size.
The equivalent class constant is MINIMUM_ENTROPY
. All NIST DRBGs must be instaniated with at least MINIMUM_ENTROPY
bytes of entropy. The bytes must meet NIST SP 800-90B or SP 800-90C requirements.
Implemented in Hash_DRBG< HASH, STRENGTH, SEEDLENGTH >.
|
pure virtual |
Provides the minimum nonce size.
The equivalent class constant is MINIMUM_NONCE
. If a nonce is not required then MINIMUM_NONCE
is 0. Hash_DRBG
does not require a nonce, while HMAC_DRBG
and CTR_DRBG
require a nonce.
Implemented in Hash_DRBG< HASH, STRENGTH, SEEDLENGTH >.
|
pure virtual |
Provides the security strength.
The equivalent class constant is SECURITY_STRENGTH
Implemented in Hash_DRBG< HASH, STRENGTH, SEEDLENGTH >.
|
pure virtual |
Provides the seed length.
The equivalent class constant is SEED_LENGTH
. The size is used to maintain internal state of V
and C
.
Implemented in Hash_DRBG< HASH, STRENGTH, SEEDLENGTH >.
|
pure virtual |
Update RNG state with additional unpredictable values.
input | the entropy to add to the generator |
length | the size of the input buffer |
NIST_DRBG::Err | if the generator is reseeded with insufficient entropy |
NIST instantiation and reseed requirements demand the generator is constructed with at least MINIMUM_ENTROPY
entropy. The byte array for input
must meet NIST SP 800-90B or SP 800-90C requirements.
Reimplemented from RandomNumberGenerator.
Implemented in Hash_DRBG< HASH, STRENGTH, SEEDLENGTH >.
|
pure virtual |
Update RNG state with additional unpredictable values.
entropy | the entropy to add to the generator |
entropyLength | the size of the input buffer |
additional | additional input to add to the generator |
additionaLength | the size of the additional input buffer |
NIST_DRBG::Err | if the generator is reseeded with insufficient entropy |
IncorporateEntropy() is an overload provided to match NIST requirements. NIST instantiation and reseed requirements demand the generator is constructed with at least MINIMUM_ENTROPY
entropy. The byte array for entropy
must meet NIST SP 800-90B or SP 800-90C requirements.
Implemented in Hash_DRBG< HASH, STRENGTH, SEEDLENGTH >.