| Language | References for enabling TLS |
| Java | Set the TLS protocol in the javax.net.ssl.SSLContext. Refer http://docs.oracle.com/javase/7/docs/technotes/guides/security/jsse/JSSERefGuide.html |
| Ruby | Set the TLS protocol in the OpenSSL::SSL::SSLContext. Refer http://ruby-doc.org/stdlib-1.9.3/libdoc/openssl/rdoc/OpenSSL/SSL/SSLContext.html |
| PHP | Set CURLOPT_SSLVERSION to CURL_SSLVERSION_TLSv1 in your Curl options. Refer http://curl.haxx.se/libcurl/c/CURLOPT_SSLVERSION.html |
| Python | Set the TLS protocol in the ssl.SSLContext. Refer https://docs.python.org/2/library/ssl.html |
| C# | Use SecurityProtocolType Tls. Refer http://msdn.microsoft.com/en-us/library/system.net.securityprotocoltype%28v=vs.110%29.aspx |