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
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to