diff options
author | Mattias Andrée <maandree@kth.se> | 2024-09-01 11:51:11 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-09-01 11:51:11 +0200 |
commit | ac78f1000830681e767a418f58b88bba23469a0e (patch) | |
tree | 7475606f4b454cd7c3365336e0587ea08fde47d2 /keccak_256.c | |
parent | m + add -W[no-]xlink and -W[no-]xdev (diff) | |
download | anysum-ac78f1000830681e767a418f58b88bba23469a0e.tar.gz anysum-ac78f1000830681e767a418f58b88bba23469a0e.tar.bz2 anysum-ac78f1000830681e767a418f58b88bba23469a0e.tar.xz |
Remove non-whole byte tests
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'keccak_256.c')
-rw-r--r-- | keccak_256.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/keccak_256.c b/keccak_256.c index 4ac5930..9c7a4cc 100644 --- a/keccak_256.c +++ b/keccak_256.c @@ -5,13 +5,7 @@ static struct testcase testcases[] = { - {1, 0, "", "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"}, - {0, 1, "\xff", "1f9e121db558ff4a6111d06e48b47aa9e8c968222397c5867ed627c82a5bcce4"}, - {0, 1, "\x7f", "1f9e121db558ff4a6111d06e48b47aa9e8c968222397c5867ed627c82a5bcce4"}, - {0, 1, "\x01", "1f9e121db558ff4a6111d06e48b47aa9e8c968222397c5867ed627c82a5bcce4"}, - {0, 1, "\xfe", "c3e5cb55999eeff4e07b7effec77582d0a5a11a94fc268a872493099273992e1"}, - {0, 1, "\x7e", "c3e5cb55999eeff4e07b7effec77582d0a5a11a94fc268a872493099273992e1"}, - {0, 1, "\x00", "c3e5cb55999eeff4e07b7effec77582d0a5a11a94fc268a872493099273992e1"} + {1, 0, "", "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"} }; |