MD5withRSA on the java side to generate the sig which verifies correctly with Java
code. On the C side:
#include
#include
#include
#include
#include
#include
#include
#include
#include
int main ()
{
int i,err;
char data[1024] = "abcdefg";
EVP_MD_CTX md_ctx;
EVP
Um...are you using the exact same algorithm on both side? What about
padding schemes? Can you give more details?
I think as long as the algorithm is totally the same, it shouldn't matter
if it is Java generated or openssl generated.
Michelle
On Tue, 1 Apr 2003, Sly Upah wrote:
> Can anyone p