From 975c6f3337039d14ecf87d674af72ac5ab0fee02 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Tue, 11 Feb 2025 08:52:07 -0500 Subject: [PATCH] ssh: Update config.h for OpenSSL ED25519 OpenSSH-portable had a configure bug that prevented it from detecting OpenSSL ED25519 support, fixed in 8d0e46c1ddb5 ("Fix OpenSSL ED25519 support detection"). This will come in with the OpenSSH 9.8p1 update, but fix the error in config.h now. Reported by: jlduran Reviewed by: jlduran Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D48942 --- crypto/openssh/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/openssh/config.h b/crypto/openssh/config.h index 29f73831ad7..851366b65df 100644 --- a/crypto/openssh/config.h +++ b/crypto/openssh/config.h @@ -1754,7 +1754,7 @@ #define OPENSSL_HAS_ECC 1 /* libcrypto has ed25519 support */ -/* #undef OPENSSL_HAS_ED25519 */ +#define OPENSSL_HAS_ED25519 1 /* libcrypto has NID_X9_62_prime256v1 */ #define OPENSSL_HAS_NISTP256 1