From: "Mark" <[EMAIL PROTECTED]>
Reply-To: openssl-users@openssl.org
To: openssl-users@openssl.org
Subject: RE: A Few General OpenSSL Questions...
Date: Thu, 1 Dec 2005 12:37:55 -0000

Hello Usman,

> > > an error. Can someone tell what do i need to do to make
> the server
> >connect
> > > with SSL v3, or TLS ver 1????
> >
> >Have you tried the SSLv23_method? it starts with a v2 Hello, then it
> >upgrades to v3 or tlsv1 ...

Try this with SSLv23_method:

    /* Set any parameters such as disabling v2 protocol. */
    SSL_CTX_set_options(ctx,
                        SSL_OP_ALL  |   /* All bug workarounds.      */
                        SSL_OP_NO_SSLv2 /* Disable v2 protocol       */
                        );


Regards, Mark


Thanks for the reply Mark, I gather, using method v23 with setting option to disable v2 is same as using just v3, since my problem is OpenSSL on the server does not want to continue if the client is using a different version and returns an error instead of sending client some data to use a different protocol (i guess that's not part of SSL specs). But I'll give it a try & post back I have any further questions.
Thanks,
Usman.

_________________________________________________________________
Don't just search. Find. Check out the new MSN Search! http://search.msn.com/

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to