Crypto++
Public Member Functions | List of all members
X917RNG Class Reference

RNG derived from ANSI X9.17 Appendix C. More...

#include <rng.h>

Inheritance diagram for X917RNG:
RandomNumberGenerator NotCopyable Algorithm Clonable

Public Member Functions

 X917RNG (BlockTransformation *cipher, const byte *seed, const byte *deterministicTimeVector=0)
 
void GenerateIntoBufferedTransformation (BufferedTransformation &target, const std::string &channel, lword size)
 generate random bytes as input to a BufferedTransformation
 
virtual void IncorporateEntropy (const byte *input, size_t length)
 update RNG state with additional unpredictable values
 
virtual bool CanIncorporateEntropy () const
 returns true if IncorporateEntropy is implemented
 
virtual byte GenerateByte ()
 generate new random byte and return it
 
virtual unsigned int GenerateBit ()
 generate new random bit and return it More...
 
virtual word32 GenerateWord32 (word32 a=0, word32 b=0xffffffffL)
 generate a random 32 bit word in the range min to max, inclusive
 
virtual void GenerateBlock (byte *output, size_t size)
 generate random array of bytes
 
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, resulting permutation is uniformly distributed
 
virtual std::string AlgorithmName () const
 returns name of this algorithm, not universally implemented yet
 
virtual ClonableClone () const
 this is not implemented by most classes yet
 

Detailed Description

RNG derived from ANSI X9.17 Appendix C.

Definition at line 34 of file rng.h.

Member Function Documentation

virtual unsigned int RandomNumberGenerator::GenerateBit ( )
virtualinherited

generate new random bit and return it

Default implementation is to call GenerateByte() and return its lowest bit.

Reimplemented in PublicBlumBlumShub.


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