aboutsummaryrefslogtreecommitdiffstats
path: root/md4.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2024-09-01 11:51:11 +0200
committerMattias Andrée <maandree@kth.se>2024-09-01 11:51:11 +0200
commitac78f1000830681e767a418f58b88bba23469a0e (patch)
tree7475606f4b454cd7c3365336e0587ea08fde47d2 /md4.c
parentm + add -W[no-]xlink and -W[no-]xdev (diff)
downloadanysum-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 'md4.c')
-rw-r--r--md4.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/md4.c b/md4.c
index 650c50c..065ca26 100644
--- a/md4.c
+++ b/md4.c
@@ -15,13 +15,7 @@ static struct testcase testcases[] = {
{1, 0, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", "043f8582f241db351ce627e153e7f0e4"},
{1, 0, "12345678901234567890123456789012345678901234567890123456789012345678901234567890", "e33b4ddc9c38f2199c3e7b164fcc0536"},
{1, 0, "1234567890123456789012345678901234567890123456789012345678901234", "c30a2de7d6eb547b4ceb82d65e28c029"},
- {1000000UL, 0, "a", NULL},
- {0, 1, "\xff", "15f8f7419944ac564526a3c65da2c5f3"},
- {0, 1, "\x7f", "15f8f7419944ac564526a3c65da2c5f3"},
- {0, 1, "\x01", "15f8f7419944ac564526a3c65da2c5f3"},
- {0, 1, "\xfe", "8d62ecbf6ffbc49dec08bb4c537189bb"},
- {0, 1, "\x7e", "8d62ecbf6ffbc49dec08bb4c537189bb"},
- {0, 1, "\x00", "8d62ecbf6ffbc49dec08bb4c537189bb"}
+ {1000000UL, 0, "a", NULL}
};