Bugzilla – Attachment 3288 Details for
Bug 3016
(still) not generating correct RSA SHA2 signatures from certificate files loaded in ssh-agent
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
use correct algorithm identification in ssh-agent
file_3016.txt (text/plain), 780 bytes, created by
Jakub Jelen
on 2019-05-29 23:55:21 AEST
(
hide
)
Description:
use correct algorithm identification in ssh-agent
Filename:
MIME Type:
Creator:
Jakub Jelen
Created:
2019-05-29 23:55:21 AEST
Size:
780 bytes
patch
obsolete
>commit b7a18344323feb8963e3e37a2f4d8359fb7c8789 >Author: Jakub Jelen <jjelen@redhat.com> >Date: Wed May 29 15:54:02 2019 +0200 > > ssh-agent: Create correct signatures using RSA certificates by providing correct algorithm identification > >diff --git a/ssh-agent.c b/ssh-agent.c >index d06ecfd9..8e5550ac 100644 >--- a/ssh-agent.c >+++ b/ssh-agent.c >@@ -269,6 +269,11 @@ agent_decode_alg(struct sshkey *key, u_int flags) > return "rsa-sha2-256"; > else if (flags & SSH_AGENT_RSA_SHA2_512) > return "rsa-sha2-512"; >+ } else if (key->type == KEY_RSA_CERT) { >+ if (flags & SSH_AGENT_RSA_SHA2_256) >+ return "rsa-sha2-256-cert-v01@openssh.com"; >+ else if (flags & SSH_AGENT_RSA_SHA2_512) >+ return "rsa-sha2-512-cert-v01@openssh.com"; > } > return NULL; > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Flags:
dtucker
:
ok+
Actions:
View
Attachments on
bug 3016
: 3288