From: Kristof Provost Date: Fri, 11 Nov 2022 10:20:31 +0000 (+0100) Subject: FreeBSD DCO: support AES-192-GCM X-Git-Tag: v2.6_beta1~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=115559aa34c0ae20ba5628e8becf09af990fc97f;p=thirdparty%2Fopenvpn.git FreeBSD DCO: support AES-192-GCM As of 2c58d0cb3bb3e3a5b714ffac940500efbe5303ca FreeBSD also allows AES-192-GCM in DCO. Announce this support. Signed-off-by: Kristof Provost Acked-by: Arne Schwabe Message-Id: <20221111102031.8402-2-kprovost@netgate.com> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg25506.html Signed-off-by: Gert Doering --- diff --git a/src/openvpn/dco_freebsd.c b/src/openvpn/dco_freebsd.c index c83610288..8e5ee4366 100644 --- a/src/openvpn/dco_freebsd.c +++ b/src/openvpn/dco_freebsd.c @@ -667,7 +667,7 @@ dco_event_set(dco_context_t *dco, struct event_set *es, void *arg) const char * dco_get_supported_ciphers() { - return "none:AES-256-GCM:AES-128-GCM:CHACHA20-POLY1305"; + return "none:AES-256-GCM:AES-192-GCM:AES-128-GCM:CHACHA20-POLY1305"; } #endif /* defined(ENABLE_DCO) && defined(TARGET_FREEBSD) */