diff options
author | Jack Lloyd <[email protected]> | 2016-10-28 16:44:05 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-10-28 16:49:11 -0400 |
commit | f98c184fe66e6c0f624b381a186c6dddfc62539a (patch) | |
tree | 325aca069972bf38d92032d74b4a3d53d5b081d9 /src/lib/entropy/beos_stats/es_beos.h | |
parent | 8141ea4c2a51e908fae3ebb463154acffeac9186 (diff) |
Remove HMAC_RNG, X9.31-RNG, BeOS stats, EGD reader, Unix process runner
Change AutoSeeded_RNG to use SHA-384, SHA-256, SHA-3(256), or SHA-1,
whichever is available (in that order).
Diffstat (limited to 'src/lib/entropy/beos_stats/es_beos.h')
-rw-r--r-- | src/lib/entropy/beos_stats/es_beos.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/lib/entropy/beos_stats/es_beos.h b/src/lib/entropy/beos_stats/es_beos.h deleted file mode 100644 index e40433b6c..000000000 --- a/src/lib/entropy/beos_stats/es_beos.h +++ /dev/null @@ -1,28 +0,0 @@ -/* -* BeOS EntropySource -* (C) 1999-2008 Jack Lloyd -* -* Botan is released under the Simplified BSD License (see license.txt) -*/ - -#ifndef BOTAN_ENTROPY_SRC_BEOS_H__ -#define BOTAN_ENTROPY_SRC_BEOS_H__ - -#include <botan/entropy_src.h> - -namespace Botan { - -/** -* BeOS Entropy Source -*/ -class BeOS_EntropySource final : public Entropy_Source - { - private: - std::string name() const override { return "system_stats"; } - - size_t poll(RandomNumberGenerator& rng) override; - }; - -} - -#endif |