Botan  2.13.0
Crypto and TLS for C++11
p9_darn.h
Go to the documentation of this file.
1 /*
2 * (C) 2019 Jack Lloyd
3 *
4 * Botan is released under the Simplified BSD License (see license.txt)
5 */
6 
7 #ifndef BOTAN_ENTROPY_SRC_DARN_H_
8 #define BOTAN_ENTROPY_SRC_DARN_H_
9 
10 #include <botan/entropy_src.h>
11 
12 namespace Botan {
13 
15  {
16  public:
17  std::string name() const override { return "p9_darn"; }
18  size_t poll(RandomNumberGenerator& rng) override;
19  };
20 
21 }
22 
23 #endif
int(* final)(unsigned char *, CTX *)
Definition: alg_id.cpp:13
size_t poll(RandomNumberGenerator &rng) override
Definition: p9_darn.cpp:38
std::string name() const override
Definition: p9_darn.h:17