diff options
author | ben <ben@cvs.openbsd.org> | 2001-08-28 12:20:44 +0000 |
---|---|---|
committer | ben <ben@cvs.openbsd.org> | 2001-08-28 12:20:44 +0000 |
commit | 11ce2e89c5872903743da37daa4c8e91acc3113f (patch) | |
tree | a16fe9490f4118353c2e1d30a5240d7bbdb0af68 /sys/crypto/xform.h | |
parent | 2bfaabeb4bbcde09c7f481379268a5acd248fdec (diff) |
Getting closer to working userland MAC.
Diffstat (limited to 'sys/crypto/xform.h')
-rw-r--r-- | sys/crypto/xform.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/crypto/xform.h b/sys/crypto/xform.h index 788d6a5da0b..396a9bf2e2f 100644 --- a/sys/crypto/xform.h +++ b/sys/crypto/xform.h @@ -1,4 +1,4 @@ -/* $OpenBSD: xform.h,v 1.7 2001/08/17 17:37:12 ben Exp $ */ +/* $OpenBSD: xform.h,v 1.8 2001/08/28 12:20:43 ben Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) @@ -74,6 +74,8 @@ extern struct enc_xform enc_xform_skipjack; extern struct enc_xform enc_xform_rijndael128; extern struct enc_xform enc_xform_arc4; +extern struct auth_hash auth_hash_md5; +extern struct auth_hash auth_hash_sha1; extern struct auth_hash auth_hash_key_md5; extern struct auth_hash auth_hash_key_sha1; extern struct auth_hash auth_hash_hmac_md5_96; |