diff options
author | JP Aumasson <jpa@pm.me> | 2021-02-19 08:00:58 +0100 |
---|---|---|
committer | JP Aumasson <jpa@pm.me> | 2021-02-19 08:00:58 +0100 |
commit | f5d28c84b2c129ca6a3ae6c741d1812903bec83c (patch) | |
tree | 47714acbb4145ab47a8e9217229ef66ec9d6b070 /test.c | |
parent | Merge pull request #32 from veorq/header (diff) | |
download | siphash-f5d28c84b2c129ca6a3ae6c741d1812903bec83c.tar.gz siphash-f5d28c84b2c129ca6a3ae6c741d1812903bec83c.tar.xz |
halfsiphash header + badge
Diffstat (limited to 'test.c')
-rw-r--r-- | test.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -11,6 +11,8 @@ */ #include "vectors.h" +#include "siphash.h" +#include "halfsiphash.h" #include <stdbool.h> #include <stdint.h> #include <stdio.h> @@ -23,9 +25,6 @@ } \ printf("},\n"); -int siphash(const uint8_t *in, const size_t inlen, const uint8_t *k, - uint8_t *out, const size_t outlen); - int halfsiphash(const uint8_t *in, const size_t inlen, const uint8_t *k, uint8_t *out, const size_t outlen); |