diff options
author | René Korthaus <[email protected]> | 2017-03-09 11:00:35 +0100 |
---|---|---|
committer | René Korthaus <[email protected]> | 2017-03-09 11:00:35 +0100 |
commit | 823371d06b55043425f9254ac594f74e6a58eee4 (patch) | |
tree | 44d84dbc500ca23b08623472a1de88f506bf31d6 /src/lib/entropy | |
parent | 9961e475f10a671a8e25080958d26c8c356057ef (diff) |
Small fixes in API docs [ci skip]
Diffstat (limited to 'src/lib/entropy')
-rw-r--r-- | src/lib/entropy/entropy_src.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/entropy/entropy_src.h b/src/lib/entropy/entropy_src.h index 94c67a18e..fe177657c 100644 --- a/src/lib/entropy/entropy_src.h +++ b/src/lib/entropy/entropy_src.h @@ -25,11 +25,11 @@ class RandomNumberGenerator; class BOTAN_DLL Entropy_Source { public: - /* + /** * 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 global_entropy_sources() + * use the preconfigured global list accessed by Entropy_Sources::global_sources() */ static std::unique_ptr<Entropy_Source> create(const std::string& type); @@ -41,7 +41,7 @@ class BOTAN_DLL Entropy_Source /** * Perform an entropy gathering poll * @param rng will be provided with entropy via calls to add_entropy - @ @return conservative estimate of actual entropy added to rng during poll + * @return conservative estimate of actual entropy added to rng during poll */ virtual size_t poll(RandomNumberGenerator& rng) = 0; |