Botan  2.13.0
Crypto and TLS for C++11
Public Member Functions | Static Public Member Functions | List of all members
Botan::POWER9_DARN Class Referencefinal

#include <p9_darn.h>

Inheritance diagram for Botan::POWER9_DARN:
Botan::Entropy_Source

Public Member Functions

std::string name () const override
 
size_t poll (RandomNumberGenerator &rng) override
 

Static Public Member Functions

static std::unique_ptr< Entropy_Sourcecreate (const std::string &type)
 

Detailed Description

Definition at line 14 of file p9_darn.h.

Member Function Documentation

std::unique_ptr< Entropy_Source > Botan::Entropy_Source::create ( const std::string &  type)
staticinherited

Return a new entropy source of a particular type, or null Each entropy source may require substantial resources (eg, a file handle or socket instance), so try to share them among multiple RNGs, or just use the preconfigured global list accessed by Entropy_Sources::global_sources()

Definition at line 67 of file entropy_srcs.cpp.

References BOTAN_UNUSED, and Botan::OS::running_in_privileged_state().

Referenced by Botan::Entropy_Sources::Entropy_Sources().

68  {
69 #if defined(BOTAN_HAS_SYSTEM_RNG)
70  if(name == "system_rng" || name == "win32_cryptoapi")
71  {
72  return std::unique_ptr<Entropy_Source>(new System_RNG_EntropySource);
73  }
74 #endif
75 
76 #if defined(BOTAN_HAS_ENTROPY_SRC_RDRAND)
77  if(name == "rdrand")
78  {
79  return std::unique_ptr<Entropy_Source>(new Intel_Rdrand);
80  }
81 #endif
82 
83 #if defined(BOTAN_HAS_ENTROPY_SRC_RDSEED)
84  if(name == "rdseed")
85  {
86  return std::unique_ptr<Entropy_Source>(new Intel_Rdseed);
87  }
88 #endif
89 
90 #if defined(BOTAN_HAS_ENTROPY_SRC_DARN)
91  if(name == "p9_darn")
92  {
93  return std::unique_ptr<Entropy_Source>(new POWER9_DARN);
94  }
95 #endif
96 
97 #if defined(BOTAN_HAS_ENTROPY_SRC_GETENTROPY)
98  if(name == "getentropy")
99  {
100  return std::unique_ptr<Entropy_Source>(new Getentropy);
101  }
102 #endif
103 
104 #if defined(BOTAN_HAS_ENTROPY_SRC_DEV_RANDOM)
105  if(name == "dev_random")
106  {
107  return std::unique_ptr<Entropy_Source>(new Device_EntropySource(BOTAN_SYSTEM_RNG_POLL_DEVICES));
108  }
109 #endif
110 
111 #if defined(BOTAN_HAS_ENTROPY_SRC_PROC_WALKER)
112  if(name == "proc_walk" && OS::running_in_privileged_state() == false)
113  {
114  const std::string root_dir = BOTAN_ENTROPY_PROC_FS_PATH;
115  if(!root_dir.empty())
116  return std::unique_ptr<Entropy_Source>(new ProcWalking_EntropySource(root_dir));
117  }
118 #endif
119 
120 #if defined(BOTAN_HAS_ENTROPY_SRC_WIN32)
121  if(name == "system_stats")
122  {
123  return std::unique_ptr<Entropy_Source>(new Win32_EntropySource);
124  }
125 #endif
126 
128  return std::unique_ptr<Entropy_Source>();
129  }
virtual std::string name() const =0
bool running_in_privileged_state()
Definition: os_utils.cpp:143
#define BOTAN_UNUSED(...)
Definition: assert.h:142
std::string Botan::POWER9_DARN::name ( ) const
inlineoverridevirtual
Returns
name identifying this entropy source

Implements Botan::Entropy_Source.

Definition at line 17 of file p9_darn.h.

17 { return "p9_darn"; }
size_t Botan::POWER9_DARN::poll ( RandomNumberGenerator rng)
overridevirtual

Perform an entropy gathering poll

Parameters
rngwill be provided with entropy via calls to add_entropy
Returns
conservative estimate of actual entropy added to rng during poll

Implements Botan::Entropy_Source.

Definition at line 38 of file p9_darn.cpp.

References Botan::RandomNumberGenerator::add_entropy().

39  {
40  const size_t DARN_BYTES = 1024;
41  static_assert(DARN_BYTES % 8 == 0, "Bad DARN configuration");
42 
43  if(CPUID::has_darn_rng())
44  {
45  secure_vector<uint64_t> seed;
46  seed.reserve(DARN_BYTES / 8);
47 
48  for(size_t p = 0; p != DARN_BYTES / 8; ++p)
49  {
50  if(!read_darn(seed))
51  break;
52  }
53 
54  if(seed.size() > 0)
55  {
56  rng.add_entropy(reinterpret_cast<const uint8_t*>(seed.data()),
57  seed.size() * sizeof(uint32_t));
58  }
59  }
60 
61  // DARN is used but not trusted
62  return 0;
63  }

The documentation for this class was generated from the following files: