diff options
author | Niels Provos <provos@cvs.openbsd.org> | 1997-06-24 12:15:28 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 1997-06-24 12:15:28 +0000 |
commit | 6e79d83bde76cc1e88a4d6bf487189769ef11465 (patch) | |
tree | 79413ebba8b387f6a704b63bf112acec6759b2cf /sys/netinet/ip_ipsp.c | |
parent | d3aefd9008254bea4ccef33b0b71ee00ec825972 (diff) |
handle IP options in AH + allow IP options in outgoing encapsulated packets
+ usage counters for later use with keymanagement processes
Diffstat (limited to 'sys/netinet/ip_ipsp.c')
-rw-r--r-- | sys/netinet/ip_ipsp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_ipsp.c b/sys/netinet/ip_ipsp.c index dabe093ee63..1388be11ed6 100644 --- a/sys/netinet/ip_ipsp.c +++ b/sys/netinet/ip_ipsp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipsp.c,v 1.8 1997/06/21 00:09:19 deraadt Exp $ */ +/* $OpenBSD: ip_ipsp.c,v 1.9 1997/06/24 12:15:25 provos Exp $ */ /* * The author of this code is John Ioannidis, ji@tla.org, @@ -90,10 +90,10 @@ struct xformsw xformsw[] = { { XF_AHHMACSHA1, XFT_AUTH, "HMAC SHA1 Authentication", ahhmacsha1_attach, ahhmacsha1_init, ahhmacsha1_zeroize, ahhmacsha1_input, ahhmacsha1_output, }, - { XF_ESPDESMD5, XFT_CONF, "DES-CBC Encryption + MD5 Authentication", + { XF_ESPDESMD5, XFT_CONF|XFT_AUTH, "DES-CBC Encryption + MD5 Authentication", espdesmd5_attach, espdesmd5_init, espdesmd5_zeroize, espdesmd5_input, espdesmd5_output, }, - { XF_ESP3DESMD5, XFT_CONF, "3DES-CBC Encryption + MD5 Authentication", + { XF_ESP3DESMD5, XFT_CONF|XFT_AUTH, "3DES-CBC Encryption + MD5 Authentication", esp3desmd5_attach, esp3desmd5_init, esp3desmd5_zeroize, esp3desmd5_input, esp3desmd5_output, }, }; |