Remove unused code

This commit is contained in:
Frank Denis
2025-12-08 16:01:13 +01:00
parent 5357d3c6cf
commit 020441853d
2 changed files with 1 additions and 14 deletions
-13
View File
@@ -2,19 +2,6 @@
#define TEST_NAME "core_keccak1600"
#include "cmptest.h"
static void
print_state(const unsigned char *state, size_t len)
{
size_t i;
for (i = 0; i < len; i++) {
if (i > 0 && i % 16 == 0) {
printf("\n");
}
printf("%02x", state[i]);
}
printf("\n");
}
static void
print_hex(const char *label, const unsigned char *data, size_t len)
{
+1 -1
View File
@@ -68,7 +68,7 @@ main(void)
unsigned char out[256];
crypto_xof_shake128_state state;
size_t i, j;
size_t i;
/* Test constants */
assert(crypto_xof_shake128_blockbytes() == 168);