diff options
author | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2005-11-24 11:52:08 +0000 |
---|---|---|
committer | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2005-11-24 11:52:08 +0000 |
commit | d7826759d3df119d214d67c8a85c0b53eff83041 (patch) | |
tree | 42d1b9e4657c4f16d504e3d04e0abe5817fd3756 /sbin/ipsecctl/parse.y | |
parent | 2cf7c4efd42cfae7cadf401bd542847522227b38 (diff) |
Remove old-style keyed sha1/md5. We only support hmac-sha1/md5.
Noticed the hard way by <raff at brodewicz dot pl>
Diffstat (limited to 'sbin/ipsecctl/parse.y')
-rw-r--r-- | sbin/ipsecctl/parse.y | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sbin/ipsecctl/parse.y b/sbin/ipsecctl/parse.y index d2b222ece0d..d7df1646299 100644 --- a/sbin/ipsecctl/parse.y +++ b/sbin/ipsecctl/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.40 2005/11/12 21:57:34 hshoexer Exp $ */ +/* $OpenBSD: parse.y,v 1.41 2005/11/24 11:52:07 hshoexer Exp $ */ /* * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -62,8 +62,6 @@ const struct ipsec_xf authxfs[] = { { "hmac-sha2-256", AUTHXF_HMAC_SHA2_256, 32, 0 }, { "hmac-sha2-384", AUTHXF_HMAC_SHA2_384, 48, 0 }, { "hmac-sha2-512", AUTHXF_HMAC_SHA2_512, 64, 0 }, - { "md5", AUTHXF_MD5, 16, 0 }, - { "sha1", AUTHXF_SHA1, 20, 0 }, { NULL, 0, 0, 0 }, }; |