From 84a4e25d07f50b7de7841bfb7fc945eaf9e8d45c Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 1 Jan 2017 07:17:42 -0500 Subject: [PATCH] Fix illegal character in comments It looks like Gedit's Find/Replace did not work as expected when converting left-quote and right-quote to 8-bit clean ASCII --- drbg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drbg.h b/drbg.h index 8c3b146d..a146019a 100644 --- a/drbg.h +++ b/drbg.h @@ -258,7 +258,7 @@ protected: // SP 800-90A, 8.6.3: The entropy input shall have entropy that is equal to or greater than the security // strength of the instantiation. Additional entropy may be provided in the nonce or the optional // personalization string during instantiation, or in the additional input during reseeding and generation, - // but this is not required and does not increase the "official" security strength of the DRBG + // but this is not required and does not increase the "official" security strength of the DRBG // instantiation that is recorded in the internal state. CRYPTOPP_ASSERT(entropyLength >= MINIMUM_ENTROPY); if (entropyLength < MINIMUM_ENTROPY) @@ -285,7 +285,7 @@ protected: // SP 800-90A, 8.6.3: The entropy input shall have entropy that is equal to or greater than the security // strength of the instantiation. Additional entropy may be provided in the nonce or the optional // personalization string during instantiation, or in the additional input during reseeding and generation, - // but this is not required and does not increase the "official" security strength of the DRBG + // but this is not required and does not increase the "official" security strength of the DRBG // instantiation that is recorded in the internal state.. CRYPTOPP_ASSERT(entropyLength >= MINIMUM_ENTROPY); if (entropyLength < MINIMUM_ENTROPY)