Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Feb 2025 13:13:13 GMT
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 4f48ab042c97 - stable/14 - ssh: Update config.h for OpenSSL ED25519
Message-ID:  <202502181313.51IDDDV3011735@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=4f48ab042c97ed6cfaa174600e3d17755c889512

commit 4f48ab042c97ed6cfaa174600e3d17755c889512
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2025-02-11 13:52:07 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2025-02-18 13:12:45 +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
    
    (cherry picked from commit 975c6f3337039d14ecf87d674af72ac5ab0fee02)
---
 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 6462ff16d8d9..751bb631c221 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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202502181313.51IDDDV3011735>