openssh/upstream-typo-in-plain-RSA-algorithm-counterpart-nam.patch

33 lines
1.1 KiB
Diff
Raw Normal View History

2019-09-30 11:10:51 -04:00
From ebfafd9c7a5b2a7fb515ee95dbe0e44e11d0a663 Mon Sep 17 00:00:00 2001
From: "djm@openbsd.org" <djm@openbsd.org>
Date: Thu, 11 Oct 2018 00:52:46 +0000
Subject: [PATCH 069/294] upstream: typo in plain RSA algorithm counterpart
names for
certificates; spotted by Adam Eijdenberg; ok dtucker@
OpenBSD-Commit-ID: bfcdeb6f4fc9e7607f5096574c8f118f2e709e00
---
sshkey.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sshkey.c b/sshkey.c
index ed57d30..5807627 100644
--- a/sshkey.c
+++ b/sshkey.c
@@ -118,9 +118,9 @@ static const struct keytype keytypes[] = {
{ "ssh-rsa-cert-v01@openssh.com", "RSA-CERT", NULL,
KEY_RSA_CERT, 0, 1, 0 },
{ "rsa-sha2-256-cert-v01@openssh.com", "RSA-CERT",
- "ssh-rsa-sha2-256", KEY_RSA_CERT, 0, 1, 1 },
+ "rsa-sha2-256", KEY_RSA_CERT, 0, 1, 1 },
{ "rsa-sha2-512-cert-v01@openssh.com", "RSA-CERT",
- "ssh-rsa-sha2-512", KEY_RSA_CERT, 0, 1, 1 },
+ "rsa-sha2-512", KEY_RSA_CERT, 0, 1, 1 },
{ "ssh-dss-cert-v01@openssh.com", "DSA-CERT", NULL,
KEY_DSA_CERT, 0, 1, 0 },
{ "ssh-rsa-cert-v01@openssh.com", "RSA-CERT", NULL,
--
1.8.3.1