The branch main has been updated by emaste:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=975c6f3337039d14ecf87d674af72ac5ab0fee02

commit 975c6f3337039d14ecf87d674af72ac5ab0fee02
Author:     Ed Maste <ema...@freebsd.org>
AuthorDate: 2025-02-11 13:52:07 +0000
Commit:     Ed Maste <ema...@freebsd.org>
CommitDate: 2025-02-11 20:12:31 +0000

    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 29f73831ad7b..851366b65dfc 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

Reply via email to