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