]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/siphash.h
Faster crc32c
[bcachefs-tools-debian] / libbcachefs / siphash.h
1 /* $OpenBSD: siphash.h,v 1.5 2015/02/20 11:51:03 tedu Exp $ */
2 /*-
3  * Copyright (c) 2013 Andre Oppermann <andre@FreeBSD.org>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote
15  *    products derived from this software without specific prior written
16  *    permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  *
30  * $FreeBSD$
31  */
32
33 /*
34  * SipHash is a family of pseudorandom functions (a.k.a. keyed hash functions)
35  * optimized for speed on short messages returning a 64bit hash/digest value.
36  *
37  * The number of rounds is defined during the initialization:
38  *  SipHash24_Init() for the fast and resonable strong version
39  *  SipHash48_Init() for the strong version (half as fast)
40  *
41  * struct SIPHASH_CTX ctx;
42  * SipHash24_Init(&ctx);
43  * SipHash_SetKey(&ctx, "16bytes long key");
44  * SipHash_Update(&ctx, pointer_to_string, length_of_string);
45  * SipHash_Final(output, &ctx);
46  */
47
48 #ifndef _SIPHASH_H_
49 #define _SIPHASH_H_
50
51 #include <linux/types.h>
52
53 #define SIPHASH_BLOCK_LENGTH     8
54 #define SIPHASH_KEY_LENGTH      16
55 #define SIPHASH_DIGEST_LENGTH    8
56
57 typedef struct _SIPHASH_CTX {
58         u64             v[4];
59         u8              buf[SIPHASH_BLOCK_LENGTH];
60         u32             bytes;
61 } SIPHASH_CTX;
62
63 typedef struct {
64         __le64          k0;
65         __le64          k1;
66 } SIPHASH_KEY;
67
68 void    SipHash_Init(SIPHASH_CTX *, const SIPHASH_KEY *);
69 void    SipHash_Update(SIPHASH_CTX *, int, int, const void *, size_t);
70 u64     SipHash_End(SIPHASH_CTX *, int, int);
71 void    SipHash_Final(void *, SIPHASH_CTX *, int, int);
72 u64     SipHash(const SIPHASH_KEY *, int, int, const void *, size_t);
73
74 #define SipHash24_Init(_c, _k)          SipHash_Init((_c), (_k))
75 #define SipHash24_Update(_c, _p, _l)    SipHash_Update((_c), 2, 4, (_p), (_l))
76 #define SipHash24_End(_d)               SipHash_End((_d), 2, 4)
77 #define SipHash24_Final(_d, _c)         SipHash_Final((_d), (_c), 2, 4)
78 #define SipHash24(_k, _p, _l)           SipHash((_k), 2, 4, (_p), (_l))
79
80 #define SipHash48_Init(_c, _k)          SipHash_Init((_c), (_k))
81 #define SipHash48_Update(_c, _p, _l)    SipHash_Update((_c), 4, 8, (_p), (_l))
82 #define SipHash48_End(_d)               SipHash_End((_d), 4, 8)
83 #define SipHash48_Final(_d, _c)         SipHash_Final((_d), (_c), 4, 8)
84 #define SipHash48(_k, _p, _l)           SipHash((_k), 4, 8, (_p), (_l))
85
86 #endif /* _SIPHASH_H_ */