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
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
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
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
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)
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
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
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