wolfcrypt/test/test.c: remove debugging printf in XChaCha20Poly1305_test().

This commit is contained in:
Daniel Pouzzner
2020-10-01 21:44:18 -05:00
parent e1d3f2c7b4
commit 99b76241bd

View File

@ -10217,10 +10217,8 @@ static int XChaCha20Poly1305_test(void) {
IV, sizeof IV, IV, sizeof IV,
Key, sizeof Key); Key, sizeof Key);
if (ret < 0) { if (ret < 0)
printf("wc_XChaCha20Poly1305_decrypt_oneshot failed: %s\n",wc_GetErrorString(ret));
ERROR_OUT(-4763, out); ERROR_OUT(-4763, out);
}
if (XMEMCMP(buf2, Plaintext, sizeof Plaintext)) if (XMEMCMP(buf2, Plaintext, sizeof Plaintext))
ERROR_OUT(-4764, out); ERROR_OUT(-4764, out);