Re: Supporting both TLSv1 and SSLv3

2005-06-29 Thread david kine
Thanks for the reply, don't know how I missed that one, perhaps the name SSLv23 is confusing because it doesn't contain TLS. -David --- Cesc <[EMAIL PROTECTED]> wrote: > Why don't you try SSLv23_client_method()? > You can also use the set_options (for the SSL > structure or the > SSL_CTX) to pro

Re: Supporting both TLSv1 and SSLv3

2005-06-29 Thread Cesc
Why don't you try SSLv23_client_method()? You can also use the set_options (for the SSL structure or the SSL_CTX) to prohibit the use of SSLv2. This way, you got an SSLv3 and TLSv1 client. Cesc On 6/29/05, david kine <[EMAIL PROTECTED]> wrote: > Hello, > > How should I program my client applicat

Supporting both TLSv1 and SSLv3

2005-06-28 Thread david kine
Hello, How should I program my client application to support both TSLv1 and SSLv3? According to RFC2246 appendix E, the client sends a single SSLv3 record format HELLO message with the version field set to {3, 1}. Is this possible with OpenSSL? If not, do I connect with the TLSv1_client_method(