summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlkaid <zgf574564920@gmail.com>2024-03-12 03:59:12 -0700
committerDamien Miller <djm@mindrot.org>2024-03-30 15:36:18 +1100
commit8d0e46c1ddb5b7f0992591b0dc5d8aaa77cc9dba (patch)
treefda6e3231188880cc9c0f3450fd75e839c41651a
parent697359be9c23ee43618243cdbcc9c7981e766752 (diff)
Fix OpenSSL ED25519 support detection
Wrong function signature in configure.ac prevents openssh from enabling the recently new support for ED25519 priv keys in PEM PKCS8 format.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 82e8bb7c..081e2bc7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3184,7 +3184,7 @@ if test "x$openssl" = "xyes" ; then
]], [[
unsigned char buf[64];
memset(buf, 0, sizeof(buf));
- exit(EVP_PKEY_new_raw_private_key(EVP_PKEY_ED25519,
+ exit(EVP_PKEY_new_raw_private_key(EVP_PKEY_ED25519, NULL,
buf, sizeof(buf)) == NULL);
]])],
[