How to configure SSL Cipher Suites for https in Java -
i using third-party package managing oauth connections. configure cipher suites used ssl connection under hood. unfortunately, third party creates connection url.openconnection() , have no obvious way reach sslsocketfactory in order set cipher suites. there way set through, example, jvm parameter?
thanks
url.openconnection() (with https:// url) should use httpsurlconnection. should able use https.ciphersuites system property this. (see table in customization section of jsse ref. guide).
Comments
Post a Comment