From fcc3f9e19c0413eeacbf8c3392b200eff2969810 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Tue, 14 Jul 2015 23:40:14 +0200 Subject: Get rid of siphash.h as we don't use it --- siphash.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'siphash.c') diff --git a/siphash.c b/siphash.c index 7a5c8d4..d85fd4b 100644 --- a/siphash.c +++ b/siphash.c @@ -7,8 +7,6 @@ // You should have received a copy of the CC0 Public Domain Dedication along // with this software. If not, see . -#include "siphash.h" - inline static uint64_t u8to64_le (const unsigned char *p) { @@ -23,7 +21,7 @@ u8to64_le (const unsigned char *p) (uint64_t) p[7] << 56 ; } -uint64_t +static uint64_t siphash (const unsigned char key[16], const unsigned char *m, size_t len) { uint64_t v0, v1, v2, v3; -- cgit v1.2.3