RE: sign problem

2014-11-24 Thread Scott Neugroschl
Your problem is with signlen. You’re accessing a null pointer in EVP_DigestSignFinal(). Declare signlen as size_t, not a size_t*, and pass the *ADDRESS* of signlen. E.g.: EVP_DigestSignFinal(mdctx, NULL, signlen); From: owner-openssl-us...@openssl.org

RE: sign problem

2014-11-18 Thread Scott Neugroschl
That looks like a debugger message, not an actual error from the code. From: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org] On Behalf Of Amir Reda Sent: Tuesday, November 18, 2014 10:29 AM To: openssl-users@openssl.org Subject: sign problem dear all i made an

Re: sign problem

2014-11-18 Thread Niraj Sorathiya
Hello Everyone, Where we are executing these client.cc,server.cc,client.h,server.h,certificate.cpp files ? As i want to make my own Digital Certificate using my own algorithm i was not understanding where to execute these files. Thankyou. Regards, Niraj. On Wed, Nov 19, 2014 at 12:12 AM,

Re: sign problem

2014-11-18 Thread Amir Reda
sorry sir what do you mean by your question On Wed, Nov 19, 2014 at 9:02 AM, Niraj Sorathiya nirajsorathiya...@gmail.com wrote: Hello Everyone, Where we are executing these client.cc,server.cc,client.h,server.h,certificate.cpp files ? As i want to make my own Digital Certificate using my