This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/ssh-rsa.c b/ssh-rsa.c | |
| index 6e2bba0d..b82045e2 100644 | |
| --- a/ssh-rsa.c | |
| +++ b/ssh-rsa.c | |
| @@ -232,6 +232,7 @@ ssh_rsa_verify(const struct sshkey *key, | |
| ret = SSH_ERR_KEY_TYPE_MISMATCH; | |
| goto out; | |
| } | |
| + debug("Verifying signature with ktype=%s and hash_alg=%d", ktype, hash_alg); | |
| if (sshbuf_get_string(b, &sigblob, &len) != 0) { | |
| ret = SSH_ERR_INVALID_FORMAT; | |
| goto out; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment