We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e51938 commit 467d6ddCopy full SHA for 467d6dd
1 file changed
tests/api/test_evp_digest.c
@@ -139,7 +139,6 @@ int test_wolfSSL_EVP_sm3(void)
139
ExpectIntEQ(EVP_DigestFinal(mdCtx, calcHash, &sz), WOLFSSL_SUCCESS);
140
ExpectIntEQ(sz, WC_SM3_DIGEST_SIZE);
141
for (chunk = 1; chunk <= WC_SM3_BLOCK_SIZE + 1; chunk++) {
142
- for (i = 0; i + chunk <= (word32)sizeof(data); i += chunk) {
143
for (i = 0; i + chunk <= (word32)sizeof(data); i += chunk) {
144
ExpectIntEQ(EVP_DigestUpdate(mdCtx, data + i, chunk),
145
WOLFSSL_SUCCESS);
0 commit comments