Marek Marcola wrote:
Hello,
I would like to know if it is possible to build a SSL server which accepts both
sslv3 and tlsV1 methods ..
As far as I understand, SSl_CTX_NEW API accepts only one method ...
Yes, but if you want to support SSL3 and TLS1 then you should
choose SSLv23_server_method(void).
Check method info in SSL_CTX_new() man page.
Best regards,
and don't forget to include SSL_OP_NO_SSLv2 to exclude ssl2 protocol (or
others as you want), as SSLv23 includes support for all protocol versions.
-jb
--
The biggest problem with communication is the illusion that it has occurred.
______________________________________________________________________
OpenSSL Project http://www.openssl.org
User Support Mailing List openssl-users@openssl.org
Automated List Manager [EMAIL PROTECTED]