RE: SSL_write parameters after an SSL_ERROR_WANT_(READ|WRITE)

2002-05-28 Thread Daryl Odnert
her to write into the SSL context at that point. Thanks, Daryl Odnert [EMAIL PROTECTED] -Original Message- From: Lutz Jaenicke [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 28, 2002 12:30 PM To: [EMAIL PROTECTED] Subject: Re: SSL_write parameters after an SSL_ERROR_WANT_(READ|WRITE) On Tue, M

RE: Trusted CA list

2002-05-03 Thread Daryl Odnert
on how important the data is that you're securing, you would probably want to review the documented practices and limits of liability offered by each certificate authority before you explicitly trust it. This step is fundamental to the use of digital certificates for data security. Daryl Odnert

RE: How do I get the Common Name and DNS Name?

2002-03-28 Thread Daryl Odnert
Also, note that you should check for the 'type' field of the GENERAL_NAME structure equal to GEN_DNS instead of GEN_EMAIL. Daryl __ OpenSSL Project http://www.openssl.org User Support Mailing List

RE: How do I get the Common Name and DNS Name?

2002-03-28 Thread Daryl Odnert
I found the answer to "how to get the dNSName" values here: http://www.mail-archive.com/openssl-users@openssl.org/msg11613.html in reference to the same question asked here: http://www.mail-archive.com/openssl-users@openssl.org/msg11608.html Daryl Odnert [EMAIL

RE: HELP, SSL_connect fails !

2002-03-28 Thread Daryl Odnert
It works in my application. Daryl -Original Message- From: Jeff Roberts [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 11:47 AM To: [EMAIL PROTECTED] Subject: re[4]: HELP, SSL_connect fails ! Is this the right coding or not ? int rval; if ((rval = SSL_connect(con)) != 1)

RE: extract CN and dNSName

2002-03-28 Thread Daryl Odnert
ested if anyone has a code sample for extracting the dNSName from the subjectAltName extension of a certificate. Daryl Odnert [EMAIL PROTECTED] -Original Message- From: Shane Titus [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 27, 2002 8:08 PM To: [EMAIL PROTECTED] Subject: extract C

RE: re[2]: HELP, SSL_connect fails !

2002-03-28 Thread Daryl Odnert
Jeff, Change your code so it looks like this: int rval; if ((rval = SSL_connect(con)) != 1) { int err = SSL_get_error(con, rval); /* handle the error here */ } Daryl Odnert [EMAIL PROTECTED] -Original Message- From: Jeff Roberts [mailto:[EMAIL PROTECTED]] Sent

RE: OpenSSL & Asynchronous Windows Sockets

2002-03-14 Thread Daryl Odnert
Common wisdom on this topic seems to be that you should handle the I/O in your own code and use BIO pairs to do the handshake/encryption/decryption. If you search the list archives for the keyword "overlapped" or "completion port" you will find a couple of good descriptions o