-
Bug
-
Resolution: Fixed
-
P3
-
6u18
-
b142
-
x86
-
windows_vista
-
Not verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2215540 | 6u38 | Mala Bankal | P3 | Closed | Fixed | b01 |
A DESCRIPTION OF THE REQUEST :
JRE 1.6.0_u18, for 64-bit Windows Vista does not appear to contain the sun.security.mscapi.SunMSCAPI security provider. The classes, supporting DLL, and security provider mapping in the java.security policy file are absent.
At runtime, the security API reports that it cannot locate the Windows-MY keystore. Documentation for the SunMSCAPI Provider does not indicate that support is only available on certain Windows platforms.
http://java.sun.com/javase/6/docs/technotes/guides/security/SunProviders.html#SunMSCAPI
The 32-bit distribution for the same version and operating system includes this feature.
If implementation is impossible, due to limitations of the host platform, treat this as a bug, for which the end product would be updated documentation to warn future engineers of the missing feature.
JUSTIFICATION :
Provide feature consistency between JVM implementations runnable on the same host platform. Provide upgrade-path for code written against 32-bit JVM features.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
The 64-bit Windows JVM implementations should provide access to the Windows-MY and Windows-ROOT keystores.
ACTUAL -
JVM indicates that it cannot locate the Windows-MY keystore.
Exception in thread "main" java.security.KeyStoreException: Windows-MY not found
at java.security.KeyStore.getInstance(KeyStore.java:587)
at org.example.crypto.LoadKeystore.main(LoadKeystore.java:10)
Caused by: java.security.NoSuchAlgorithmException: Windows-MY KeyStore not available
at sun.security.jca.GetInstance.getInstance(GetInstance.java:142)
at java.security.Security.getImpl(Security.java:659)
at java.security.KeyStore.getInstance(KeyStore.java:584)
---------- BEGIN SOURCE ----------
package org.example.crypto;
import java.security.KeyStore;
import java.security.KeyStoreException;
public class LoadKeystore
{
public static void main(String[] args) throws KeyStoreException
{
KeyStore keystore = KeyStore.getInstance("Windows-MY");
System.out.println(keystore.aliases());
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
Don't upgrade to the Windows 64-bit JVM.
or
Use certificates from a file-based keystore. (i.e. don't use the missing feature).
JRE 1.6.0_u18, for 64-bit Windows Vista does not appear to contain the sun.security.mscapi.SunMSCAPI security provider. The classes, supporting DLL, and security provider mapping in the java.security policy file are absent.
At runtime, the security API reports that it cannot locate the Windows-MY keystore. Documentation for the SunMSCAPI Provider does not indicate that support is only available on certain Windows platforms.
http://java.sun.com/javase/6/docs/technotes/guides/security/SunProviders.html#SunMSCAPI
The 32-bit distribution for the same version and operating system includes this feature.
If implementation is impossible, due to limitations of the host platform, treat this as a bug, for which the end product would be updated documentation to warn future engineers of the missing feature.
JUSTIFICATION :
Provide feature consistency between JVM implementations runnable on the same host platform. Provide upgrade-path for code written against 32-bit JVM features.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
The 64-bit Windows JVM implementations should provide access to the Windows-MY and Windows-ROOT keystores.
ACTUAL -
JVM indicates that it cannot locate the Windows-MY keystore.
Exception in thread "main" java.security.KeyStoreException: Windows-MY not found
at java.security.KeyStore.getInstance(KeyStore.java:587)
at org.example.crypto.LoadKeystore.main(LoadKeystore.java:10)
Caused by: java.security.NoSuchAlgorithmException: Windows-MY KeyStore not available
at sun.security.jca.GetInstance.getInstance(GetInstance.java:142)
at java.security.Security.getImpl(Security.java:659)
at java.security.KeyStore.getInstance(KeyStore.java:584)
---------- BEGIN SOURCE ----------
package org.example.crypto;
import java.security.KeyStore;
import java.security.KeyStoreException;
public class LoadKeystore
{
public static void main(String[] args) throws KeyStoreException
{
KeyStore keystore = KeyStore.getInstance("Windows-MY");
System.out.println(keystore.aliases());
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
Don't upgrade to the Windows 64-bit JVM.
or
Use certificates from a file-based keystore. (i.e. don't use the missing feature).
- backported by
-
JDK-2215540 Support SunMSCAPI Security Provider in Windows 64-bit releases of JVM
-
- Closed
-
- relates to
-
JDK-7035058 TEST_BUG: sun/security/mscapi/IsSunMSCAPIAvailable.sh sun/security/mscapi/RSAEncryptDecrypt.sh fails
-
- Closed
-
-
JDK-7090631 4 tests from sun/security/mscapi failed on windows 64-bit
-
- Closed
-