xref: /openbsd-src/lib/libc/hidden/blf.h (revision 89db3a204d87a918319b4ef97bce4540c64a667e)
1*89db3a20Sguenther /*	$OpenBSD: blf.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_BLF_H_
19*89db3a20Sguenther #define _LIBC_BLF_H_
20*89db3a20Sguenther 
21*89db3a20Sguenther #include_next <blf.h>
22*89db3a20Sguenther 
23*89db3a20Sguenther PROTO_NORMAL(Blowfish_decipher);
24*89db3a20Sguenther PROTO_NORMAL(Blowfish_encipher);
25*89db3a20Sguenther PROTO_NORMAL(Blowfish_expand0state);
26*89db3a20Sguenther PROTO_NORMAL(Blowfish_expandstate);
27*89db3a20Sguenther PROTO_NORMAL(Blowfish_initstate);
28*89db3a20Sguenther PROTO_NORMAL(Blowfish_stream2word);
29*89db3a20Sguenther PROTO_NORMAL(blf_cbc_decrypt);
30*89db3a20Sguenther PROTO_NORMAL(blf_cbc_encrypt);
31*89db3a20Sguenther PROTO_NORMAL(blf_dec);
32*89db3a20Sguenther PROTO_NORMAL(blf_ecb_decrypt);
33*89db3a20Sguenther PROTO_NORMAL(blf_ecb_encrypt);
34*89db3a20Sguenther PROTO_NORMAL(blf_enc);
35*89db3a20Sguenther PROTO_NORMAL(blf_key);
36*89db3a20Sguenther 
37*89db3a20Sguenther #endif /* _LIBC_BLF_H_ */
38