Message ID | 20231009105714.34598-1-frank@lichtenheld.com |
---|---|
State | Accepted |
Headers | show |
Series | [Openvpn-devel] Add warning for the --show-groups command that some groups are missing | expand |
Seems to make sense to avoid confusion. Minimally tested. Your patch has been applied to the master and release/2.6 branch. commit a840d5099a7d1a5ceb752c481fc345f6385719df (master) commit f41eb752368f0aa7f2a2504221df01d498f5a238 (release/2.6) Author: Arne Schwabe Date: Mon Oct 9 12:57:14 2023 +0200 Add warning for the --show-groups command that some groups are missing Acked-by: Frank Lichtenheld <frank@lichtenheld.com> Message-Id: <20231009105714.34598-1-frank@lichtenheld.com> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg27193.html Signed-off-by: Gert Doering <gert@greenie.muc.de> -- kind regards, Gert Doering
diff --git a/src/openvpn/ssl_openssl.c b/src/openvpn/ssl_openssl.c index 686ecf7..2b3f4f4 100644 --- a/src/openvpn/ssl_openssl.c +++ b/src/openvpn/ssl_openssl.c @@ -2359,8 +2359,10 @@ void show_available_curves(void) { - printf("Consider using openssl 'ecparam -list_curves' as\n" - "alternative to running this command.\n"); + printf("Consider using 'openssl ecparam -list_curves' as alternative to running\n" + "this command.\n" + "Note this output does only list curves/groups that OpenSSL considers as\n" + "builtin EC curves. It does not list additional curves nor X448 or X25519\n"); #ifndef OPENSSL_NO_EC EC_builtin_curve *curves = NULL; size_t crv_len = 0;