aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/rng/x931_rng/x931_rng.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/rng/x931_rng/x931_rng.h')
-rw-r--r--src/lib/rng/x931_rng/x931_rng.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/src/lib/rng/x931_rng/x931_rng.h b/src/lib/rng/x931_rng/x931_rng.h
deleted file mode 100644
index 861fcffde..000000000
--- a/src/lib/rng/x931_rng/x931_rng.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
-* ANSI X9.31 RNG
-* (C) 1999-2009 Jack Lloyd
-*
-* Botan is released under the Simplified BSD License (see license.txt)
-*/
-
-#ifndef BOTAN_ANSI_X931_RNG_H__
-#define BOTAN_ANSI_X931_RNG_H__
-
-#include <botan/rng.h>
-#include <botan/block_cipher.h>
-
-namespace Botan {
-
-/**
-* ANSI X9.31 RNG
-*/
-class BOTAN_DLL ANSI_X931_RNG final : public RandomNumberGenerator
- {
- public:
- void randomize(byte[], size_t) override;
- bool is_seeded() const override;
- void clear() override;
- std::string name() const override;
-
- size_t reseed(Entropy_Sources& srcs,
- size_t poll_bits,
- std::chrono::milliseconds poll_timeout) override;
-
- void add_entropy(const byte[], size_t) override;
-
- /**
- * @param cipher the block cipher to use in this PRNG
- * @param rng the underlying PRNG for generating inputs
- * (eg, an HMAC_RNG)
- */
- BOTAN_DEPRECATED("X9.31 RNG is deprecated and will be removed soon")
- ANSI_X931_RNG(BlockCipher* cipher,
- RandomNumberGenerator* rng);
-
- private:
- void rekey();
- void update_buffer();
-
- std::unique_ptr<BlockCipher> m_cipher;
- std::unique_ptr<RandomNumberGenerator> m_prng;
- secure_vector<byte> m_V, m_R;
- size_t m_R_pos;
- };
-
-}
-
-#endif