We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents beaf16b + b7679db commit 1f33b99Copy full SHA for 1f33b99
wolfcrypt/test/test.c
@@ -16748,10 +16748,12 @@ static wc_test_ret_t aesccm_128_test(void)
16748
ERROR_OUT(WC_TEST_RET_ENC_NC, out);
16749
16750
/* Clear c2 to compare against p2. p2 should be set to zero in case of
16751
- * authentication fail. */
+ * authentication fail. With ACVP_VECTOR_TESTING, this is not cleared */
16752
+#ifndef ACVP_VECTOR_TESTING
16753
XMEMSET(c2, 0, sizeof(c2));
16754
if (XMEMCMP(p2, c2, sizeof(p2)))
16755
16756
+#endif
16757
#endif
16758
16759
XMEMSET(t2, 0, sizeof(t2));
0 commit comments