summaryrefslogtreecommitdiff
path: root/drbg.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2021-03-04 22:49:25 -0500
committerJeffrey Walton <noloader@gmail.com>2021-03-04 22:49:25 -0500
commit8e9cb9d9d8f4ed2423600d232860b7db49091e8a (patch)
tree83010d5a5527f1c043a554e3b897903ded413d50 /drbg.h
parent1a5346c6c797b585dbc761c0d5c93c0073dee843 (diff)
downloadcryptopp-git-8e9cb9d9d8f4ed2423600d232860b7db49091e8a.tar.gz
Whitespace check-in
Diffstat (limited to 'drbg.h')
-rw-r--r--drbg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drbg.h b/drbg.h
index 8381c338..b56256de 100644
--- a/drbg.h
+++ b/drbg.h
@@ -127,12 +127,12 @@ public:
virtual unsigned int MaxNonceLength() const=0;
/// \brief Provides the maximum size of a request to GenerateBlock
- /// \return The maximum size of a request to GenerateBlock(), in bytes
+ /// \return The maximum size of a request to GenerateBlock(), in bytes
/// \details The equivalent class constant is <tt>MAXIMUM_BYTES_PER_REQUEST</tt>
virtual unsigned int MaxBytesPerRequest() const=0;
/// \brief Provides the maximum number of requests before a reseed
- /// \return The maximum number of requests before a reseed, in bytes
+ /// \return The maximum number of requests before a reseed, in bytes
/// \details The equivalent class constant is <tt>MAXIMUM_REQUESTS_BEFORE_RESEED</tt>.
/// <tt>MAXIMUM_REQUESTS_BEFORE_RESEED</tt> has been reduced from 2<sup>48</sup> to <tt>INT_MAX</tt>
/// to fit the underlying C++ datatype.