diff options
-rw-r--r-- | ssh-agent.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ssh-agent.c b/ssh-agent.c index 034f31387..4669b679c 100644 --- a/ssh-agent.c +++ b/ssh-agent.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssh-agent.c,v 1.234 2019/06/06 05:13:13 otto Exp $ */ | 1 | /* $OpenBSD: ssh-agent.c,v 1.235 2019/06/14 03:51:47 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -269,6 +269,11 @@ agent_decode_alg(struct sshkey *key, u_int flags) | |||
269 | return "rsa-sha2-256"; | 269 | return "rsa-sha2-256"; |
270 | else if (flags & SSH_AGENT_RSA_SHA2_512) | 270 | else if (flags & SSH_AGENT_RSA_SHA2_512) |
271 | return "rsa-sha2-512"; | 271 | return "rsa-sha2-512"; |
272 | } else if (key->type == KEY_RSA_CERT) { | ||
273 | if (flags & SSH_AGENT_RSA_SHA2_256) | ||
274 | return "rsa-sha2-256-cert-v01@openssh.com"; | ||
275 | else if (flags & SSH_AGENT_RSA_SHA2_512) | ||
276 | return "rsa-sha2-512-cert-v01@openssh.com"; | ||
272 | } | 277 | } |
273 | return NULL; | 278 | return NULL; |
274 | } | 279 | } |