> Would any one be able to let me know what versions of SSL (if applicable)
> and TLS is supported in openssl 1.0.1g
>
All of them. Its up to you to trim what you don't want.
You can remove protocols (and other features) at compile time with, for example:
./config no-ssl2 no-ssl3 no-comp
Or, you can remove them at runtime with, for example:
const SSL_METHOD* method = SSLv23_method();
SSL_CTX* context = SSL_CTX_new(method);
long flags = SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 | SSL_OP_NO_COMPRESSION;
SSL_CTX_set_options(context, flags);
______________________________________________________________________
OpenSSL Project http://www.openssl.org
User Support Mailing List [email protected]
Automated List Manager [email protected]