< prev index next >

test/jdk/java/security/MessageDigest/UnsupportedProvider.java

Print this page
rev 59107 : imported patch security

@@ -65,13 +65,8 @@
     // Check if specific provider supports SHA-3 hash algorithms
     static boolean isSHA3Supported(String provName) {
         if ("SUN".equals(provName)) {
             return true;
         }
-        if ("OracleUcrypto".equals(provName)
-                && "SunOS".equals(System.getProperty("os.name"))
-                && System.getProperty("os.version").compareTo("5.12") >= 0) {
-            return true;
-        }
         return false;
     }
 }
< prev index next >