Botan 3.4.0
Crypto and TLS for C&
Public Member Functions | Static Public Member Functions | List of all members
Botan::Getentropy Class Referencefinal

#include <getentropy.h>

Inheritance diagram for Botan::Getentropy:
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 (std::string_view type)
 

Detailed Description

Entropy source using the getentropy(2) system call first introduced in OpenBSD 5.6 and added to Solaris 11.3.

Definition at line 19 of file getentropy.h.

Member Function Documentation

◆ create()

std::unique_ptr< Entropy_Source > Botan::Entropy_Source::create ( std::string_view 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 88 of file entropy_srcs.cpp.

88 {
89#if defined(BOTAN_HAS_SYSTEM_RNG)
90 if(name == "system_rng") {
91 return std::make_unique<System_RNG_EntropySource>();
92 }
93#endif
94
95#if defined(BOTAN_HAS_PROCESSOR_RNG)
96 if(name == "hwrng") {
98 return std::make_unique<Processor_RNG_EntropySource>();
99 }
100 }
101#endif
102
103#if defined(BOTAN_HAS_ENTROPY_SRC_RDSEED)
104 if(name == "rdseed") {
105 return std::make_unique<Intel_Rdseed>();
106 }
107#endif
108
109#if defined(BOTAN_HAS_ENTROPY_SRC_GETENTROPY)
110 if(name == "getentropy") {
111 return std::make_unique<Getentropy>();
112 }
113#endif
114
115#if defined(BOTAN_HAS_ENTROPY_SRC_WIN32)
116 if(name == "system_stats") {
117 return std::make_unique<Win32_EntropySource>();
118 }
119#endif
120
122 return nullptr;
123}
#define BOTAN_UNUSED
Definition assert.h:118
virtual std::string name() const =0

References Botan::Processor_RNG::available(), BOTAN_UNUSED, and Botan::Entropy_Source::name().

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

◆ name()

std::string Botan::Getentropy::name ( ) const
inlineoverridevirtual
Returns
name identifying this entropy source

Implements Botan::Entropy_Source.

Definition at line 21 of file getentropy.h.

21{ return "getentropy"; }

◆ poll()

size_t Botan::Getentropy::poll ( RandomNumberGenerator & rng)
overridevirtual

Gather 256 bytes entropy from getentropy(2). Note that maximum buffer size is limited to 256 bytes. On OpenBSD this does neither block nor fail.

Implements Botan::Entropy_Source.

Definition at line 23 of file getentropy.cpp.

23 {
24 secure_vector<uint8_t> buf(256);
25
26 if(::getentropy(buf.data(), buf.size()) == 0) {
27 rng.add_entropy(buf.data(), buf.size());
28 return buf.size() * 8;
29 }
30
31 return 0;
32}

References Botan::RandomNumberGenerator::add_entropy().


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