To debug in some situations you can use the command line tools of openssl, especially
openssl s_client
. By adding the options -tls1
, -tls1_1
and -tls1_2
you can test compatibility for the protocols, and with -cipher [cipherlist]
for ciphers. For exampleopenssl s_client -connect example.com:443 -tls1
source