I'm creating my SSL context like this:
SSLContext ret = SSLContext.getInstance("TLSv1.2");
When I went in firefox and forced it to disable TLS1.2, I noticed the page still loaded using TLS1.1
I would like to make sure the server ONLY allows TLS1.2 -- does anyone know of a way to do this?