From ea302f3ee67d34df47d880a617c65056041b8f89 Mon Sep 17 00:00:00 2001 From: gnn Date: Fri, 3 Jul 2015 20:09:14 +0000 Subject: New AES modes for IPSec, user space components. Update setkey and libipsec to understand aes-gcm-16 as an encryption method. A partial commit of the work in review D2936. Submitted by: eri Reviewed by: jmg MFC after: 2 weeks Sponsored by: Rubicon Communications (Netgate) --- usr.bin/netstat/ipsec.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'usr.bin/netstat/ipsec.c') diff --git a/usr.bin/netstat/ipsec.c b/usr.bin/netstat/ipsec.c index 137a26c..f3309ff 100644 --- a/usr.bin/netstat/ipsec.c +++ b/usr.bin/netstat/ipsec.c @@ -157,6 +157,9 @@ static struct val2str ipsec_espnames[] = { #ifdef SADB_X_EALG_AESCTR { SADB_X_EALG_AESCTR, "aes-ctr", }, #endif +#ifdef SADB_X_EALG_AESGCM16 + { SADB_X_EALG_AESGCM16, "aes-gcm-16", }, +#endif { -1, NULL }, }; -- cgit v1.1