aboutsummaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
authorJP Aumasson <jpa@pm.me>2021-02-19 08:00:58 +0100
committerJP Aumasson <jpa@pm.me>2021-02-19 08:00:58 +0100
commitf5d28c84b2c129ca6a3ae6c741d1812903bec83c (patch)
tree47714acbb4145ab47a8e9217229ef66ec9d6b070 /test.c
parentMerge pull request #32 from veorq/header (diff)
downloadsiphash-f5d28c84b2c129ca6a3ae6c741d1812903bec83c.tar.gz
siphash-f5d28c84b2c129ca6a3ae6c741d1812903bec83c.tar.xz
halfsiphash header + badge
Diffstat (limited to 'test.c')
-rw-r--r--test.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/test.c b/test.c
index 2c047aa..538996f 100644
--- a/test.c
+++ b/test.c
@@ -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);