Details
-
Enhancement
-
Resolution: Fixed
-
P3
-
8
-
None
-
b105
-
Verified
Description
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)
Attachments
Issue Links
- duplicates
-
JDK-6458767 OAEPPadding missing in the list of supported RSA paddings in SunJCE.java
- Closed
- 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