|
Security Scol plugin
|
Random Number Generator that does not produce random numbers. More...
Public Member Functions | |
| std::string | AlgorithmName () const |
| The name of the generator. | |
| void | GenerateBlock (byte *output, size_t size) |
| An implementation that throws NotImplemented. | |
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 | AlgorithmProvider () const |
| Retrieve the provider of this algorithm. | |
Public Member Functions inherited from Clonable | |
| virtual Clonable * | Clone () const |
| Copies this object. | |
Random Number Generator that does not produce random numbers.
ClassNullRNG can be used for functions that require a RandomNumberGenerator but don't actually use it. The class throws NotImplemented when a generation function is called.
Definition at line 360 of file cryptlib.cpp.
|
inlinevirtual |
The name of the generator.
Reimplemented from Algorithm.
Definition at line 365 of file cryptlib.cpp.
|
inlinevirtual |
An implementation that throws NotImplemented.
Reimplemented from RandomNumberGenerator.
Definition at line 377 of file cryptlib.cpp.