Security Scol plugin
Public Member Functions | List of all members
KDF2_RNG Class Reference
Inheritance diagram for KDF2_RNG:
RandomNumberGenerator Algorithm Clonable

Public Member Functions

 KDF2_RNG (const byte *seed, size_t seedSize)
 
void GenerateBlock (byte *output, size_t size)
 Generate random array of bytes.
 
size_t ClampSize (size_t req) const
 
- Public Member Functions inherited from RandomNumberGenerator
virtual void IncorporateEntropy (const byte *input, size_t length)
 Update RNG state with additional unpredictable values.
 
virtual bool CanIncorporateEntropy () const
 Determines if a generator can accept additional entropy.
 
virtual byte GenerateByte ()
 Generate new random byte and return it.
 
virtual unsigned int GenerateBit ()
 Generate new random bit and return it.
 
virtual word32 GenerateWord32 (word32 min=0, word32 max=0xffffffffUL)
 Generate a random 32 bit word in the range min to max, inclusive.
 
virtual void GenerateIntoBufferedTransformation (BufferedTransformation &target, const std::string &channel, lword length)
 Generate random bytes into a BufferedTransformation.
 
virtual void DiscardBytes (size_t n)
 Generate and discard n bytes.
 
template<class IT >
void Shuffle (IT begin, IT end)
 Randomly shuffle the specified array.
 
- Public Member Functions inherited from Algorithm
 Algorithm (bool checkSelfTestStatus=true)
 Interface for all crypto algorithms.
 
virtual std::string AlgorithmName () const
 Provides the name of this algorithm.
 
virtual std::string AlgorithmProvider () const
 Retrieve the provider of this algorithm.
 
- Public Member Functions inherited from Clonable
virtual ClonableClone () const
 Copies this object.
 

Detailed Description

Definition at line 3553 of file integer.cpp.

Constructor & Destructor Documentation

◆ KDF2_RNG()

KDF2_RNG::KDF2_RNG ( const byte seed,
size_t  seedSize 
)
inline

Definition at line 3556 of file integer.cpp.

Member Function Documentation

◆ ClampSize()

size_t KDF2_RNG::ClampSize ( size_t  req) const
inline

Definition at line 3571 of file integer.cpp.

◆ GenerateBlock()

void KDF2_RNG::GenerateBlock ( byte output,
size_t  size 
)
inlinevirtual

Generate random array of bytes.

Parameters
outputthe byte buffer
sizethe length of the buffer, in bytes

All generated values are uniformly distributed over the range specified within the the constraints of a particular generator.

Note
A derived generator must override either GenerateBlock() or GenerateIntoBufferedTransformation(). They can override both, or have one call the other.

Reimplemented from RandomNumberGenerator.

Definition at line 3562 of file integer.cpp.


The documentation for this class was generated from the following file: