X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/blobdiff_plain/3780fa98afe497187a038cd994848ab111712712..0cf9e22fb53cafbff6e9113d1506b829b956bfb0:/symm/chacha-poly1305.c diff --git a/symm/chacha-poly1305.c b/symm/chacha-poly1305.c index c2866353..f307e6b2 100644 --- a/symm/chacha-poly1305.c +++ b/symm/chacha-poly1305.c @@ -44,19 +44,19 @@ LATINPOLY_DEF(chacha8, chacha, "chacha8") #include #include "latinpoly-test.h" -static int check_chacha20(dstr *v) +static int check_chacha20_poly1305(dstr *v) { return latinpoly_test(&chacha20_poly1305, v); } -static int check_chacha12(dstr *v) +static int check_chacha12_poly1305(dstr *v) { return latinpoly_test(&chacha12_poly1305, v); } -static int check_chacha8(dstr *v) +static int check_chacha8_poly1305(dstr *v) { return latinpoly_test(&chacha8_poly1305, v); } static const test_chunk tests[] = { - { "chacha20-poly1305", check_chacha20, + { "chacha20-poly1305", check_chacha20_poly1305, { &type_hex, &type_hex, &type_hex, &type_hex, &type_hex, &type_hex } }, - { "chacha12-poly1305", check_chacha12, + { "chacha12-poly1305", check_chacha12_poly1305, { &type_hex, &type_hex, &type_hex, &type_hex, &type_hex, &type_hex } }, - { "chacha8-poly1305", check_chacha8, + { "chacha8-poly1305", check_chacha8_poly1305, { &type_hex, &type_hex, &type_hex, &type_hex, &type_hex, &type_hex } }, { 0, 0, { 0 } } #undef TEST