diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-02-23 05:15:10 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-02-23 05:15:10 +0000 |
commit | 6a707b038ab1388a5f274173b7c5e726f04fb93d (patch) | |
tree | 5e7d1d66bf77f9b152a2e83fe52e49548c1ce00a /sys/netinet | |
parent | fcaf3f00e0a6bb690356f6ebf396e743449fcab9 (diff) |
Forgot this.
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/ip_blf.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/netinet/ip_blf.h b/sys/netinet/ip_blf.h index bcc50cfd025..16ffc46f2a8 100644 --- a/sys/netinet/ip_blf.h +++ b/sys/netinet/ip_blf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_blf.h,v 1.1 1997/11/04 09:11:04 provos Exp $ */ +/* $OpenBSD: ip_blf.h,v 1.2 1999/02/23 05:15:09 angelos Exp $ */ /* * Blowfish - a fast block cipher designed by Bruce Schneier * @@ -70,6 +70,9 @@ void blf_enc __P((blf_ctx *, u_int32_t *, u_int16_t)); void blf_dec __P((blf_ctx *, u_int32_t *, u_int16_t)); /* Converts u_int8_t to u_int32_t */ -u_int32_t Blowfish_stream2word __P((const u_int8_t *, u_int16_t , u_int16_t *)); +u_int32_t Blowfish_stream2word __P((const u_int8_t *, u_int16_t , + u_int16_t *)); +void blf_ecb_encrypt __P((blf_ctx *, u_int8_t *, u_int32_t)); +void blf_ecb_decrypt __P((blf_ctx *, u_int8_t *, u_int32_t)); #endif |