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:
parent
697359be9c
commit
8d0e46c1dd
|
@ -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);
|
||||
]])],
|
||||
[
|
||||
|
|
Loading…
Reference in New Issue