diff -r 39d88709b138 -r 3195a713e24d test/jdk/com/sun/crypto/provider/Cipher/RSA/TestOAEPWithParams.java --- a/test/jdk/com/sun/crypto/provider/Cipher/RSA/TestOAEPWithParams.java Mon May 21 17:17:24 2018 -0400 +++ b/test/jdk/com/sun/crypto/provider/Cipher/RSA/TestOAEPWithParams.java Mon May 21 23:40:52 2018 +0000 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -23,7 +23,7 @@ /* * @test - * @bug 4923484 + * @bug 4923484 8146293 * @summary encryption/decryption test for using OAEPParameterSpec. * @author Valerie Peng */ @@ -47,10 +47,10 @@ private static Random random = new Random(); private static String MD[] = { - "MD5", "SHA1", "SHA-224", "SHA-256" + "MD5", "SHA1", "SHA-224", "SHA-256", "SHA-512/224", "SHA-512/256" }; private static int DATA_LENGTH[] = { - 62, 54, 34, 30 + 62, 54, 34, 30, 34, 30 }; public static void main(String[] args) throws Exception { long start = System.currentTimeMillis();