8217088: Disable JDK-6913047 fix (SunPKCS11 memory leak) after JDK-8216597 (SIGBUS error in getNativeKeyInfo)
Summary: Disable JDK-6913047 fix (SunPKCS11 memory leak) temporarily until JDK-8216597 (SIGBUS error in getNativeKeyInfo) is fixed.
Reviewed-by: mullan
--- a/src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11Key.java Tue Jan 15 14:18:44 2019 -0800
+++ b/src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11Key.java Tue Jan 15 19:24:07 2019 -0300
@@ -106,7 +106,7 @@
static {
PrivilegedAction<String> getKeyExtractionProp =
() -> System.getProperty(
- "sun.security.pkcs11.disableKeyExtraction", "false");
+ "sun.security.pkcs11.disableKeyExtraction", "true");
String disableKeyExtraction =
AccessController.doPrivileged(getKeyExtractionProp);
DISABLE_NATIVE_KEYS_EXTRACTION =