summaryrefslogtreecommitdiff
path: root/rdrand.h
diff options
context:
space:
mode:
authorDimitris Apostolou <dimitris.apostolou@icloud.com>2022-01-04 12:06:35 +0200
committerGitHub <noreply@github.com>2022-01-04 05:06:35 -0500
commit715a0bcce3316a3785eb41a5080853120f9e1f41 (patch)
tree7ac00f38e562d8c2d113ca8a30f861c10476d228 /rdrand.h
parentd994989cda15fe92c10bd7638d98968b1dc17c05 (diff)
downloadcryptopp-git-715a0bcce3316a3785eb41a5080853120f9e1f41.tar.gz
Fix typos (PR# 1099)
Diffstat (limited to 'rdrand.h')
-rw-r--r--rdrand.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rdrand.h b/rdrand.h
index 11d29ca9..17169c7a 100644
--- a/rdrand.h
+++ b/rdrand.h
@@ -14,7 +14,7 @@
// to select an implementation or "throw NotImplemented". At runtime the
// constructor will throw RDRAND_Err or RDSEED_Err if a generator is
// is not available.
-// The original classes accepted a retry count. Retries were superflous for
+// The original classes accepted a retry count. Retries were superfluous for
// RDRAND, and RDSEED encountered a failure about 1 in 256 bytes depending
// on the processor. Retries were removed at Crypto++ 6.0 because
// GenerateBlock unconditionally retries and always fulfills the request.
@@ -107,7 +107,7 @@ public:
virtual ~RDSEED() {}
/// \brief Construct a RDSEED generator
- /// \details Empirical testing under a 6th generaton i7 (6200U) shows RDSEED fails
+ /// \details Empirical testing under a 6th generation i7 (6200U) shows RDSEED fails
/// to fulfill requests at about once every for every 256 bytes requested.
/// The generator runs about 4 times slower than RDRAND.
/// \throw RDSEED_Err if the random number generator is not available