[openssl-users] SSL_get_verify_result returning 5 on SSL setup?

2015-09-04 Thread Gait Boxman
. The error is listed and documented, but not used in the library anywhere AFAICT. Can anyone tell me where this value might be set in the process, and where it is in the code? Could this be an error send back by the server? Thnx, Gait Boxman. ___ openssl-users

Re: how to get the trusted certificate of the website mail.yahoo.com?

2006-11-05 Thread Gait Boxman
Hi, did you try connecting to Yahoo with the ibm.com.pem as your CAFile? Looks like they're not sending the Equifax cert along, whereas IBM is. If I'm not mistaken, the ibm.com.pem is actually the Equifax cert, IBM's cert would be the one starting with MIIC.. --Gait. Hu, Yong Jun SNLB PEK

Re: Building openssl on Win2K

2002-10-31 Thread Gait Boxman
I did it, and without any problem worth mentioning. Your troubles might be with two things, though. One might be the perl configure .. that is needed to set up the makefile, there is mention of a specific perl distro req'd, I just ran it with the one I had, and it worked fine (could be the

Re: SSL_read() hang after read http 100 continue headers

2002-10-31 Thread Gait Boxman
Looks like your code is impatient. When you get continue, 4 retries won't be enough to get the next response. Basically, if you get an SSL_ERROR_WANT_READ, you just need to keep continuing to retry the SSL_read, if you expect more data that is. So, if you expect a server response, keep