-
Type:
Enhancement
-
Status: Closed
-
Priority:
P3
-
Resolution: Fixed
-
Affects Version/s: 8
-
Fix Version/s: 8
-
Component/s: security-libs
-
Labels:None
-
Subcomponent:
-
Resolved In Build:b105
-
Verification:Verified
According to the Cipher section of the Standard Algorithm Names document (http://docs.oracle.com/javase/7/docs/technotes/guides/security/StandardNames.html#Cipher), you can specify a padding as OAEPPadding and initialize it with an OAEPParameterSpec for the digest and mgf components. However, this doesn't work with the Oracle SunJCE provider, you get a NoSuchAlgorithmException before you can initialize the Cipher with the OAEPParameterSpec:
Exception in thread "main" java.security.NoSuchAlgorithmException: Cannot find any provider supporting RSA/ECB/OAEPPadding
at javax.crypto.Cipher.getInstance(Cipher.java:535)
Exception in thread "main" java.security.NoSuchAlgorithmException: Cannot find any provider supporting RSA/ECB/OAEPPadding
at javax.crypto.Cipher.getInstance(Cipher.java:535)
- relates to
-
JDK-8022896 test/com/sun/crypto/provider/Cipher/RSA/TestOAEPPadding.java fails
-
- Closed
-
-
JDK-8017173 XMLCipher with RSA_OAEP Key Transport algorithm can't be instantiated
-
- Closed
-