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