Searched defs:ssh_rsa_verify (Results 1 - 1 of 1) sorted by path

/external/openssh/
H A Dssh-rsa.c107 ssh_rsa_verify(const Key *key, const u_char *signature, u_int signaturelen, function
120 error("ssh_rsa_verify: no RSA key");
124 error("ssh_rsa_verify: RSA modulus too small: %d < minimum %d bits",
132 error("ssh_rsa_verify: cannot handle type %s", ktype);
142 error("ssh_rsa_verify: remaining bytes in signature %d", rlen);
149 error("ssh_rsa_verify: len %u > modlen %u", len, modlen);
154 debug("ssh_rsa_verify: add padding: modlen %u > len %u",
163 error("ssh_rsa_verify: EVP_get_digestbynid %d failed", nid);
175 debug("ssh_rsa_verify: signature %scorrect", (ret==0) ? "in" : "");

Completed in 90 milliseconds