Manuel Pégourié-Gonnard
444f711216
poly1305: add test with multiple small fragments
...
This exercises the code path where data is just appended to the waiting queue
while it isn't empty.
2018-05-24 13:37:31 +02:00
Manuel Pégourié-Gonnard
a8fa8b8f96
poly1305: add test for parameter validation
...
Also fix two validation bugs found while adding the tests.
Also handle test dependencies the right way while at it.
2018-05-24 13:37:31 +02:00
Manuel Pégourié-Gonnard
fce88b2533
Fix selftest verbosity in test suites
2018-05-24 13:37:31 +02:00
Manuel Pégourié-Gonnard
1465602ee1
poly1305: fix bug in starts() and add test for it
2018-05-24 13:37:31 +02:00
Manuel Pégourié-Gonnard
528524bf3c
Reduce size of buffers in test suites
2018-05-24 13:37:31 +02:00
Manuel Pégourié-Gonnard
b1ac5e7842
poly1305: adjust parameter order
...
This module used (len, pointer) while (pointer, len) is more common in the
rest of the library, in particular it's what's used in the CMAC API that is
very comparable to Poly1305, so switch to (pointer, len) for consistency.
2018-05-24 13:37:31 +02:00
Daniel King
adc32c0b50
Add Poly1305 authenticator algorithm (RFC 7539)
...
Test vectors are included from RFC 7539.
Poly1305 is also added to the benchmark program.
2018-05-24 13:37:31 +02:00