1 /* Copyright (C) 2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
3 * This file is provided under a dual BSD/GPLv2 license.
5 * SipHash: a fast short-input PRF
6 * https://131002.net/siphash/
8 * This implementation is specifically for SipHash2-4.
11 #ifndef _LINUX_SIPHASH_H
12 #define _LINUX_SIPHASH_H
14 #include <linux/types.h>
15 #include <linux/kernel.h>
17 #define SIPHASH_ALIGNMENT __alignof__(u64)
22 u64 __siphash_aligned(const void *data, size_t len, const siphash_key_t *key);
23 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
24 u64 __siphash_unaligned(const void *data, size_t len, const siphash_key_t *key);
27 u64 siphash_1u64(const u64 a, const siphash_key_t *key);
28 u64 siphash_2u64(const u64 a, const u64 b, const siphash_key_t *key);
29 u64 siphash_3u64(const u64 a, const u64 b, const u64 c,
30 const siphash_key_t *key);
31 u64 siphash_4u64(const u64 a, const u64 b, const u64 c, const u64 d,
32 const siphash_key_t *key);
33 u64 siphash_1u32(const u32 a, const siphash_key_t *key);
34 u64 siphash_3u32(const u32 a, const u32 b, const u32 c,
35 const siphash_key_t *key);
37 static inline u64 siphash_2u32(const u32 a, const u32 b,
38 const siphash_key_t *key)
40 return siphash_1u64((u64)b << 32 | a, key);
42 static inline u64 siphash_4u32(const u32 a, const u32 b, const u32 c,
43 const u32 d, const siphash_key_t *key)
45 return siphash_2u64((u64)b << 32 | a, (u64)d << 32 | c, key);
49 static inline u64 ___siphash_aligned(const __le64 *data, size_t len,
50 const siphash_key_t *key)
52 if (__builtin_constant_p(len) && len == 4)
53 return siphash_1u32(le32_to_cpup((const __le32 *)data), key);
54 if (__builtin_constant_p(len) && len == 8)
55 return siphash_1u64(le64_to_cpu(data[0]), key);
56 if (__builtin_constant_p(len) && len == 16)
57 return siphash_2u64(le64_to_cpu(data[0]), le64_to_cpu(data[1]),
59 if (__builtin_constant_p(len) && len == 24)
60 return siphash_3u64(le64_to_cpu(data[0]), le64_to_cpu(data[1]),
61 le64_to_cpu(data[2]), key);
62 if (__builtin_constant_p(len) && len == 32)
63 return siphash_4u64(le64_to_cpu(data[0]), le64_to_cpu(data[1]),
64 le64_to_cpu(data[2]), le64_to_cpu(data[3]),
66 return __siphash_aligned(data, len, key);
70 * siphash - compute 64-bit siphash PRF value
71 * @data: buffer to hash
72 * @size: size of @data
73 * @key: the siphash key
75 static inline u64 siphash(const void *data, size_t len,
76 const siphash_key_t *key)
78 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
79 if (!IS_ALIGNED((unsigned long)data, SIPHASH_ALIGNMENT))
80 return __siphash_unaligned(data, len, key);
82 return ___siphash_aligned(data, len, key);
85 #endif /* _LINUX_SIPHASH_H */