Root Cause :
java.security.NoSuchAlgorithmException: Cannot find any provider supporting RSA/NONE/OAEPPADDING
at javax.crypto.Cipher.getInstance(DashoA12275)
at org.apache.ws.security.util.WSSecurityUtil.getCipherInstance(WSSecurityUtil.java:703)
at org.apache.ws.security.processor.EncryptedKeyProcessor.handleEncryptedKey(EncryptedKeyProcessor.java:145)
at org.apache.ws.security.processor.EncryptedKeyProcessor.handleEncryptedKey(EncryptedKeyProcessor.java:114)
Bouncycastle jar may still in the classpath - but it's not picked as a crypto provider.
Solution 1:
Download the Bouncycastle jar corresponding to your JDK from here and copy it to [JAVA_HOME]\jre\lib\ext\
Set following in [JAVA_HOME]\jre\lib\security\java.security under;
#
# List of providers and their preference orders (see above):
#
security.provider.10=org.bouncycastle.jce.provider.BouncyCastleProvider
Solution 2:
In code add Bouncycastle as a provider.
Related :
import java.security.Security;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
Security.addProvider(new BouncyCastleProvider());
org.apache.ws.security.WSSecurityException: An unsupported signature or encryption algorithm was used
0 comments:
Post a Comment