siphash
siphash copied to clipboard
Test does not cover len=1024
in test.c, shouldn't the loop read:
for (len = 1; len <= 1024; len++) {
instead of:
for (len = 1; len < 1024; len++) {
?