From 06edb2db5e2b1b4bc589968516ce44c3c8bdbeab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavol=20=C5=BD=C3=A1=C4=8Dik?= Date: Tue, 2 Dec 2025 10:04:30 +0100 Subject: [PATCH] options: replace SSH_OPTIONS_GSSAPI_KEY_EXCHANGE_ALGS example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The ECDH-based GSS KEX methods are more modern. Signed-off-by: Pavol Žáčik Reviewed-by: Jakub Jelen Reviewed-by: Andreas Schneider --- src/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options.c b/src/options.c index f1425760..c940f3e0 100644 --- a/src/options.c +++ b/src/options.c @@ -571,7 +571,7 @@ int ssh_options_set_algo(ssh_session session, * - SSH_OPTIONS_GSSAPI_KEY_EXCHANGE_ALGS * Set the GSSAPI key exchange method to be used (const char *, * comma-separated list). ex: - * "gss-group14-sha256-,gss-group16-sha512-" + * "gss-curve25519-sha256-,gss-nistp256-sha256-" * These will prefix the default algorithms if * SSH_OPTIONS_GSSAPI_KEY_EXCHANGE is true. *