search for: dsa_do_verify

Displaying 1 result from an estimated 1 matches for "dsa_do_verify".

Did you mean: ecdsa_do_verify
2002 Jun 26
0
Problem with interaction between commercial and openssh
..._verify call in kexdh.c solves the problem, but in a most unsatisfactory fashion. I double checked my compiles for linux and solaris and they are working perfectly. Looking in ssh-dss.c at ssh_dss_verify it appears that all is well right up until the end when the following occurs: ret = DSA_do_verify(digest, dlen, sig, key->dsa); memset(digest, 'd', sizeof(digest)); DSA_SIG_free(sig); debug("ssh_dss_verify: signature %s", ret == 1 ? "correct" : ret == 0 ? "incorrect" : "error"); return ret; If I a...