From: djm@openbsd.org Date: Mon, 18 Nov 2019 06:58:00 +0000 (+0000) Subject: upstream: fix a bug that prevented serialisation of ed25519-sk keys X-Git-Tag: V_8_2_P1~270 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4bfc0503ad94a2a7190686a89649567c20b8534f;p=thirdparty%2Fopenssh-portable.git upstream: fix a bug that prevented serialisation of ed25519-sk keys OpenBSD-Commit-ID: 066682b79333159cac04fcbe03ebd9c8dcc152a9 --- diff --git a/sshkey.c b/sshkey.c index 8916f8027..48dd8bea9 100644 --- a/sshkey.c +++ b/sshkey.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshkey.c,v 1.94 2019/11/18 06:39:02 djm Exp $ */ +/* $OpenBSD: sshkey.c,v 1.95 2019/11/18 06:58:00 djm Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. * Copyright (c) 2008 Alexander von Gernler. All rights reserved. @@ -823,6 +823,7 @@ to_blob_buf(const struct sshkey *key, struct sshbuf *b, int force_plain, case KEY_RSA_CERT: #endif /* WITH_OPENSSL */ case KEY_ED25519_CERT: + case KEY_ED25519_SK_CERT: #ifdef WITH_XMSS case KEY_XMSS_CERT: #endif /* WITH_XMSS */