remove test output

This commit is contained in:
toddouska 2013-10-23 17:17:47 -07:00
parent c039b0106a
commit b45370a599
1 changed files with 0 additions and 10 deletions

View File

@ -1291,16 +1291,6 @@ int hmac_blake2b_test(void)
(word32)test_hmac[i].inLen);
HmacFinal(&hmac, hash);
{
int z;
for (z = 0; z < 32; z ++) {
printf("%02x ", hash[z]);
if ( (z%16) == 15)
printf("\n");
}
printf("\n");
}
if (memcmp(hash, test_hmac[i].output, BLAKE2B_256) != 0)
return -20 - i;
#ifdef HAVE_CAVIUM