diff options
author | ben <ben@cvs.openbsd.org> | 2001-08-17 17:37:13 +0000 |
---|---|---|
committer | ben <ben@cvs.openbsd.org> | 2001-08-17 17:37:13 +0000 |
commit | 28b2d9097068b462496fc34c136f0f46450dc3a9 (patch) | |
tree | 1e6c80a6c22f80eed4f35ca3dc9d01ba79c7d1c7 /sys/crypto/xform.h | |
parent | 1752b499d786f793c3a03f398dff1e2ec31ac675 (diff) |
Add RC4 support.
Diffstat (limited to 'sys/crypto/xform.h')
-rw-r--r-- | sys/crypto/xform.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/crypto/xform.h b/sys/crypto/xform.h index 40fcf69cad6..788d6a5da0b 100644 --- a/sys/crypto/xform.h +++ b/sys/crypto/xform.h @@ -1,4 +1,4 @@ -/* $OpenBSD: xform.h,v 1.6 2001/07/05 08:26:04 jjbg Exp $ */ +/* $OpenBSD: xform.h,v 1.7 2001/08/17 17:37:12 ben Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) @@ -72,6 +72,7 @@ extern struct enc_xform enc_xform_blf; extern struct enc_xform enc_xform_cast5; 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_key_md5; extern struct auth_hash auth_hash_key_sha1; |