summaryrefslogtreecommitdiff
path: root/sbin/ipsecctl/parse.y
diff options
context:
space:
mode:
authorMike Belopuhov <mikeb@cvs.openbsd.org>2015-11-04 12:46:14 +0000
committerMike Belopuhov <mikeb@cvs.openbsd.org>2015-11-04 12:46:14 +0000
commit0a36efdf45728df94ad0122b215c598f2b1d5d1e (patch)
tree0c0748e67820f7ea8400564cd2d1973e1e796b83 /sbin/ipsecctl/parse.y
parenta06b39dddae68e415db32f86c5cd98e1138cc11e (diff)
Decode Chacha20-Poly1305 when dumping SAs; ok reyk, naddy
Diffstat (limited to 'sbin/ipsecctl/parse.y')
-rw-r--r--sbin/ipsecctl/parse.y3
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/ipsecctl/parse.y b/sbin/ipsecctl/parse.y
index cab02d25c40..46748f61d17 100644
--- a/sbin/ipsecctl/parse.y
+++ b/sbin/ipsecctl/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.162 2015/06/03 02:24:36 millert Exp $ */
+/* $OpenBSD: parse.y,v 1.163 2015/11/04 12:46:13 mikeb Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -122,6 +122,7 @@ const struct ipsec_xf encxfs[] = {
{ "aes-256-gmac", ENCXF_AES_256_GMAC, 32+4, 32+4, 1, 1 },
{ "blowfish", ENCXF_BLOWFISH, 5, 56, 0, 0 },
{ "cast128", ENCXF_CAST128, 5, 16, 0, 0 },
+ { "chacha20-poly1305", ENCXF_CHACHA20_POLY1305, 32+4, 32+4, 1, 1 },
{ "null", ENCXF_NULL, 0, 0, 0, 0 },
{ NULL, 0, 0, 0, 0, 0 },
};