aboutsummaryrefslogtreecommitdiffstats
path: root/include/randpool.h
blob: b68dec7654d547952059fc903561ac0b7606613e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*************************************************
* Randpool Header File                           *
* (C) 1999-2008 Jack Lloyd                       *
*************************************************/

#ifndef BOTAN_RANDPOOL_H__
#define BOTAN_RANDPOOL_H__

#include <botan/rng.h>
#include <botan/base.h>
#include <vector>

namespace Botan {

/*************************************************
* Randpool                                       *
*************************************************/
class BOTAN_DLL Randpool : public RandomNumberGenerator
   {
   public:
      void randomize(byte[], u32bit);
      bool is_seeded() const;
      void clear() throw();
      std::string name() const;

      void reseed();
      void add_entropy_source(EntropySource*);
      void add_entropy(const byte[], u32bit);

      Randpool(const std::string&, const std::string&);
      ~Randpool();
   private:
      void update_buffer();
      void mix_pool();

      const u32bit ITERATIONS_BEFORE_RESEED, POOL_BLOCKS;
      BlockCipher* cipher;
      MessageAuthenticationCode* mac;

      std::vector<EntropySource*> entropy_sources;
      SecureVector<byte> pool, buffer, counter;
      u32bit entropy;
   };

}

#endif