[openssh-commits] [openssh] branch master updated: upstream: Support writing ED25519 keys in PKCS8 format. GHPR570 from
git+noreply at mindrot.org
git+noreply at mindrot.org
Tue Nov 25 12:12:17 AEDT 2025
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
The following commit(s) were added to refs/heads/master by this push:
new 2d0d26602 upstream: Support writing ED25519 keys in PKCS8 format. GHPR570 from
2d0d26602 is described below
commit 2d0d26602f739b4a3ddde6c4dbc8f3ddab38ac0d
Author: djm at openbsd.org <djm at openbsd.org>
AuthorDate: Tue Nov 25 01:08:35 2025 +0000
upstream: Support writing ED25519 keys in PKCS8 format. GHPR570 from
Josh Brobst
OpenBSD-Commit-ID: 4f36019a38074b2929335fbe9cb8d9801e3177af
---
sshkey.c | 19 +++++++++++++++++--
1 file changed, 17 insertions(+), 2 deletions(-)
diff --git a/sshkey.c b/sshkey.c
index e9a287480..791361474 100644
--- a/sshkey.c
+++ b/sshkey.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshkey.c,v 1.157 2025/11/07 06:29:45 tb Exp $ */
+/* $OpenBSD: sshkey.c,v 1.158 2025/11/25 01:08:35 djm Exp $ */
/*
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
* Copyright (c) 2008 Alexander von Gernler. All rights reserved.
@@ -3311,6 +3311,19 @@ sshkey_private_to_blob_pem_pkcs8(struct sshkey *key, struct sshbuf *buf,
success = 1;
}
break;
+#ifdef OPENSSL_HAS_ED25519
+ case KEY_ED25519:
+ if (format == SSHKEY_PRIVATE_PEM) {
+ r = SSH_ERR_INVALID_FORMAT;
+ goto out;
+ } else {
+ pkey = EVP_PKEY_new_raw_private_key(EVP_PKEY_ED25519,
+ NULL, key->ed25519_sk,
+ ED25519_SK_SZ - ED25519_PK_SZ);
+ success = pkey != NULL;
+ }
+ break;
+#endif
default:
success = 0;
break;
@@ -3356,9 +3369,11 @@ sshkey_private_to_fileblob(struct sshkey *key, struct sshbuf *blob,
#ifdef WITH_OPENSSL
case KEY_ECDSA:
case KEY_RSA:
+ case KEY_ED25519:
break; /* see below */
-#endif /* WITH_OPENSSL */
+#else /* WITH_OPENSSL */
case KEY_ED25519:
+#endif /* WITH_OPENSSL */
case KEY_ED25519_SK:
#ifdef WITH_OPENSSL
case KEY_ECDSA_SK:
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list