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