Re: print result of SSL_get_verify_result

2013-01-20 Thread Dr. Stephen Henson
On Sat, Jan 19, 2013, ask wrote: > > Is there is a function in ERR_*  that can print the text from code? > Not in ERR_* no because the error doesn't come from the ERR library. You can instead use X509_verify_cert_error_string(err) Steve. -- Dr Stephen N. Henson. OpenSSL project core developer.

Re: print result of SSL_get_verify_result

2013-01-19 Thread ask
Thanks, Is there is a function in ERR_*  that can print the text from code? A From: Jeffrey Walton To: as...@yahoo.com Sent: Thursday, January 17, 2013 8:32 PM Subject: Re: print result of SSL_get_verify_result On Thu, Jan 17, 2013 at 9:17 PM, ask

Re: print result of SSL_get_verify_result

2013-01-17 Thread Jeffrey Walton
On Thu, Jan 17, 2013 at 9:17 PM, ask wrote: > How can I print out result string from return code of > SSL_get_verify_result? > For example, for my test, I got 18, > ERR_error_string( return_code) does not yield any thing? http://www.openssl.org/docs/ssl/SSL_get_verify_result.html _

print result of SSL_get_verify_result

2013-01-17 Thread ask
How can I print out result string from return code of SSL_get_verify_result? For example, for my test, I got 18, ERR_error_string( return_code) does not yield any thing? A