xref: /openbsd/lib/libc/hidden/siphash.h (revision 89db3a20)
1*89db3a20Sguenther /*	$OpenBSD: siphash.h,v 1.1 2015/09/11 09:18:27 guenther Exp $	*/
2*89db3a20Sguenther /*
3*89db3a20Sguenther  * Copyright (c) 2015 Philip Guenther <guenther@openbsd.org>
4*89db3a20Sguenther  *
5*89db3a20Sguenther  * Permission to use, copy, modify, and distribute this software for any
6*89db3a20Sguenther  * purpose with or without fee is hereby granted, provided that the above
7*89db3a20Sguenther  * copyright notice and this permission notice appear in all copies.
8*89db3a20Sguenther  *
9*89db3a20Sguenther  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10*89db3a20Sguenther  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11*89db3a20Sguenther  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12*89db3a20Sguenther  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13*89db3a20Sguenther  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14*89db3a20Sguenther  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15*89db3a20Sguenther  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16*89db3a20Sguenther  */
17*89db3a20Sguenther 
18*89db3a20Sguenther #ifndef _LIBC_SIPHASH
19*89db3a20Sguenther #define	_LIBC_SIPHASH
20*89db3a20Sguenther 
21*89db3a20Sguenther #include_next <siphash.h>
22*89db3a20Sguenther 
23*89db3a20Sguenther PROTO_NORMAL(SipHash_Init);
24*89db3a20Sguenther PROTO_NORMAL(SipHash_Update);
25*89db3a20Sguenther PROTO_NORMAL(SipHash_End);
26*89db3a20Sguenther PROTO_NORMAL(SipHash_Final);
27*89db3a20Sguenther PROTO_NORMAL(SipHash);
28*89db3a20Sguenther 
29*89db3a20Sguenther #endif /* !_LIBC_SIPHASH */
30