Is your feature request related to a problem? Please describe.
I would like to allow only a specific tls protocol to prevent the client communicating with older protocols. I also want to use specific ciphers for the client.
Describe the solution you'd like
I would prefer a simple configuration just like configuring the SSLContext and HostnameVerifier
Unirest.config()
.sslContext(sslContext)
.protocols("TLSv1.2")
.ciphers("TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384");
Describe alternatives you've considered
I couldn't discover an alternative
Is your feature request related to a problem? Please describe.
I would like to allow only a specific tls protocol to prevent the client communicating with older protocols. I also want to use specific ciphers for the client.
Describe the solution you'd like
I would prefer a simple configuration just like configuring the SSLContext and HostnameVerifier
Describe alternatives you've considered
I couldn't discover an alternative