diff options
Diffstat (limited to 'sys/crypto')
-rw-r--r-- | sys/crypto/siphash.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/crypto/siphash.c b/sys/crypto/siphash.c index e0cad44..5df2ad2 100644 --- a/sys/crypto/siphash.c +++ b/sys/crypto/siphash.c @@ -59,7 +59,6 @@ #endif - #define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) ) #define HALF_ROUND(a,b,c,d,s,t) \ @@ -74,7 +73,6 @@ HALF_ROUND(v0,v1,v2,v3,13,16); \ HALF_ROUND(v2,v1,v0,v3,17,21); - uint64_t siphash24(const void *src, unsigned long src_sz, const char key[16]) { const uint64_t *_key = (uint64_t *)key; uint64_t k0 = _le64toh(_key[0]); |