Reputation: 3
error: java.lang.IllegalArgumentExeption: Cannot support
TLS_RSA_WITH_AES_256_CBC_SHA with currently installed providers at
sun.security.ssl.CipherSuiteList.(Unknown Source) at
sun.security.ssl.SSLServerSocketImpl.setEnabledCipherSuites(Unknown Source)
I've already installed Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files 7 and it still gives the same error. Can someone please help?
Upvotes: 0
Views: 1149
Reputation: 310964
You're running Java 6 and you installed the unlimited strength stuff for Java 7.
Install the correct version.
Upvotes: 1