As others said Java 1.7 does not support that cipher but, if you have the possibility to tweak your java installation you can add the security providers.
Here the steps:
- download from bouncycastle.org bcprov-ext-jdk15on-159.jar and bctls-jdk15on-159.jar and put then into the lib/ext directory of your jre/jdk (159 is the latest version now)
- edit the file lib/security/java.security of your jre/jdk and put the following lines:
- security.provider.1=org.bouncycastle.jce.provider.BouncyCastleProvider
-security.provider.2=org.bouncycastle.jsse.provider.BouncyCastleJsseProvider
- renumerate all the following security providers by adding 2 (so security.provider.1=sun.security.provider.Sun becomes security.provider.3=sun.security.provider.Sun)
That's all, it should work now