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.
This commit is contained in:
Alkaid 2024-03-12 03:59:12 -07:00 committed by Damien Miller
parent 697359be9c
commit 8d0e46c1dd
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -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);
]])],
[