Skip to content

Commit 59110de

Browse files
Update test
1 parent 90c5a8a commit 59110de

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

closed/test/jdk/openj9/internal/security/TestConstraintsFailure.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ private static void getInstances() throws Exception {
7272
// Do nothing. This is expected.
7373
}
7474
try {
75-
MessageDigest.getInstance("SHA-256");
75+
MessageDigest.getInstance("SHA-512");
7676
throw new RuntimeException("A NoSuchAlgorithmException should have been thrown");
7777
} catch(NoSuchAlgorithmException nsae) {
7878
// Do nothing. This is expected.

closed/test/jdk/openj9/internal/security/TestConstraintsSuccess.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public class TestConstraintsSuccess {
5959
private static void getInstances() throws Exception {
6060
CertificateFactory.getInstance("X.509");
6161
CertPathValidator.getInstance("PKIX");
62-
MessageDigest.getInstance("SHA-256");
62+
MessageDigest.getInstance("SHA-512");
6363
KeyStore.getInstance("PKCS12");
6464

6565
Signature.getInstance("SHA256withECDSA");

closed/test/jdk/openj9/internal/security/constraints-java.security

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
RestrictedSecurity.TestConstraints.Version.desc.name = Test Base Profile
2222
RestrictedSecurity.TestConstraints.Version.desc.default = false
2323
RestrictedSecurity.TestConstraints.Version.desc.fips = false
24-
RestrictedSecurity.TestConstraints.Version.desc.hash = SHA256:19b75e0c43835e2f6c32cad4333c2be209ccbe860b7ea43cb6f39dec0f6dd82d
24+
RestrictedSecurity.TestConstraints.Version.desc.hash = SHA256:b7b4188e2932d3c805eacf21a0feaf282a7906743f94e31e0a32641980d6e459
2525
RestrictedSecurity.TestConstraints.Version.desc.number = Certificate #XXX
2626
RestrictedSecurity.TestConstraints.Version.desc.policy =
2727
RestrictedSecurity.TestConstraints.Version.fips.mode = test
@@ -34,6 +34,7 @@ RestrictedSecurity.TestConstraints.Version.jce.provider.1 = sun.security.provide
3434
{CertPathValidator, PKIX, *, FullClassName:TestConstraintsSuccess}, \
3535
{SecureRandom, SHA1PRNG, *, FullClassName:TestConstraintsSuccess}, \
3636
{MessageDigest, SHA-256, *}, \
37+
{MessageDigest, SHA-512, *, FullClassName:TestConstraintsSuccess}, \
3738
{KeyStore, PKCS12, *, FullClassName:TestConstraintsSuccess}]
3839
RestrictedSecurity.TestConstraints.Version.jce.provider.2 = sun.security.ec.SunEC [ \
3940
{AlgorithmParameters, EC, *, ModuleAndFullClassName:java.base/java.security.KeyPairGenerator}, \

0 commit comments

Comments
 (0)