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 110 of file entropy_srcs.cpp.
110 {
111#if defined(BOTAN_HAS_SYSTEM_RNG)
112 if(
name ==
"system_rng") {
113 return std::make_unique<System_RNG_EntropySource>();
114 }
115#endif
116
117#if defined(BOTAN_HAS_PROCESSOR_RNG)
118 if(
name ==
"hwrng") {
120 return std::make_unique<Processor_RNG_EntropySource>();
121 }
122 }
123#endif
124
125#if defined(BOTAN_HAS_ENTROPY_SRC_RDSEED)
126 if(
name ==
"rdseed") {
127 return std::make_unique<Intel_Rdseed>();
128 }
129#endif
130
131#if defined(BOTAN_HAS_ENTROPY_SRC_GETENTROPY)
132 if(
name ==
"getentropy") {
133 return std::make_unique<Getentropy>();
134 }
135#endif
136
137#if defined(BOTAN_HAS_ENTROPY_SRC_WIN32)
138 if(
name ==
"system_stats") {
139 return std::make_unique<Win32_EntropySource>();
140 }
141#endif
142
143#if defined(BOTAN_HAS_JITTER_RNG)
144 if(
name ==
"jitter_rng") {
145 return std::make_unique<Jitter_RNG_EntropySource>();
146 }
147#endif
148
150 return nullptr;
151}
virtual std::string name() const =0
References Botan::Processor_RNG::available(), BOTAN_UNUSED, and name().
Referenced by Botan::Entropy_Sources::Entropy_Sources().