search for: dsa_sig_free

Displaying 2 results from an estimated 2 matches for "dsa_sig_free".

2003 Oct 17
1
SSH/SSL Help...
Hello Everybody, I am porting SSH to the AS400 and am having some problems in the linking stage. There are some SSL components that have function prototypes defined but no function definitions for the prototypes. Functions like PBEPARAM_free from the file p5_pbe.c and DSA_SIG_free from the file dsa_asn1.c. I have noticed that these functions are both prototyped and defined in the 0.9.6k version release of SSL but I am working with the 0.9.7b release where they are not defined. Can anyone help me out? Thank you, Joey __________________________________ Do you Yahoo!? The...
2002 Jun 26
0
Problem with interaction between commercial and openssh
...es 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 am not mistaken, DSA_do_verify comes out of openssl. I am poking around in it now to see what I can learn; b...