Skip to content

Commit 76527c3

Browse files
committed
Address a report from multi-test about 8-bit chars
1 parent fa08e2c commit 76527c3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

wolfcrypt/src/pwdbased.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,12 +223,12 @@ int wc_PBKDF2_ex(byte* output, const byte* passwd, int pLen, const byte* salt,
223223
#endif
224224

225225
#if FIPS_VERSION3_GE(6,0,0) && defined(DEBUG_WOLFSSL)
226-
/* SP800-132 §5.2 recommends an iteration count of 1000 but this is not
227-
* strictly enforceable and is listed in Appendix B Table 1 as a
226+
/* SP800-132 section 5.2 recommends an iteration count of 1000 but this is
227+
* not strictly enforceable and is listed in Appendix B Table 1 as a
228228
* non-testable requirement. wolfCrypt will log it when appropriate but
229229
* take no action */
230230
if (iterations < 1000) {
231-
WOLFSSL_MSG("WARNING: Iteration < 1,000, see SP800-132 §5.2");
231+
WOLFSSL_MSG("WARNING: Iteration < 1,000, see SP800-132 section 5.2");
232232
}
233233
#endif
234234
if (iterations <= 0)

0 commit comments

Comments
 (0)