diff options
author | Niels Provos <provos@cvs.openbsd.org> | 2000-06-17 23:36:23 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 2000-06-17 23:36:23 +0000 |
commit | c80a3f0602a591c636d046d07b57451942e79d11 (patch) | |
tree | a1e7ecba07c12f34d8404d13341f2fe09a9a5edb /sys/crypto/blf.h | |
parent | 0d5811a2c2cc1f42ad20e4a56ca42094ee03b48e (diff) |
cbc mode
Diffstat (limited to 'sys/crypto/blf.h')
-rw-r--r-- | sys/crypto/blf.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/crypto/blf.h b/sys/crypto/blf.h index 90397f1fa3f..898c2ed5fab 100644 --- a/sys/crypto/blf.h +++ b/sys/crypto/blf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: blf.h,v 1.1 2000/02/28 23:13:04 deraadt Exp $ */ +/* $OpenBSD: blf.h,v 1.2 2000/06/17 23:36:22 provos Exp $ */ /* * Blowfish - a fast block cipher designed by Bruce Schneier * @@ -75,4 +75,7 @@ u_int32_t Blowfish_stream2word __P((const u_int8_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)); + +void blf_cbc_encrypt __P((blf_ctx *, u_int8_t *, u_int8_t *, u_int32_t)); +void blf_cbc_decrypt __P((blf_ctx *, u_int8_t *, u_int8_t *, u_int32_t)); #endif |