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

Popular posts from this blog

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

c - Avoiding Extra Malloc in Linked List (node->next = NULL) -