diff options
author | Niels Provos <provos@cvs.openbsd.org> | 1999-12-28 13:09:14 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 1999-12-28 13:09:14 +0000 |
commit | 031c7ae2dc97a1f984a63e6e5c37a962a15b01e2 (patch) | |
tree | 13dc49d41f1f9c99333d51934928db3f5faad910 /sys/netinet/ip_blf.h | |
parent | 2c5bbd2c239c173a21bd87ffed799f043b98a38d (diff) |
speed up blowfish by > 20%.
Diffstat (limited to 'sys/netinet/ip_blf.h')
-rw-r--r-- | sys/netinet/ip_blf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_blf.h b/sys/netinet/ip_blf.h index 16ffc46f2a8..25d80421e55 100644 --- a/sys/netinet/ip_blf.h +++ b/sys/netinet/ip_blf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_blf.h,v 1.2 1999/02/23 05:15:09 angelos Exp $ */ +/* $OpenBSD: ip_blf.h,v 1.3 1999/12/28 13:09:13 provos Exp $ */ /* * Blowfish - a fast block cipher designed by Bruce Schneier * @@ -56,8 +56,8 @@ typedef struct BlowfishContext { * Blowfish_expand0state( state, key, keylen ) */ -void Blowfish_encipher __P((blf_ctx *, u_int32_t *, u_int32_t *)); -void Blowfish_decipher __P((blf_ctx *, u_int32_t *, u_int32_t *)); +void Blowfish_encipher __P((blf_ctx *, u_int32_t *)); +void Blowfish_decipher __P((blf_ctx *, u_int32_t *)); void Blowfish_initstate __P((blf_ctx *)); void Blowfish_expand0state __P((blf_ctx *, const u_int8_t *, u_int16_t)); void Blowfish_expandstate |