Skip to content

Commit 9e262df

Browse files
committedOct 14, 2024
8342002: sun/security/tools/keytool/GenKeyPairSigner.java failed due to missing certificate output
Reviewed-by: mullan
1 parent f56a154 commit 9e262df

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed
 

‎test/jdk/ProblemList.txt

-2
Original file line numberDiff line numberDiff line change
@@ -644,8 +644,6 @@ sun/security/provider/PolicyParser/PrincipalExpansionError.java 8039280 generic-
644644

645645
sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java 8316183 linux-ppc64le
646646

647-
sun/security/tools/keytool/GenKeyPairSigner.java 8342002 generic-all
648-
649647
############################################################################
650648

651649
# jdk_sound

‎test/jdk/sun/security/tools/keytool/GenKeyPairSigner.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2021, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2021, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -84,7 +84,7 @@ static void testSignerPKCS12() throws Exception {
8484
System.out.println("Generating an XDH cert with -signer option");
8585
SecurityTools.keytool("-keystore ks -storepass changeit " +
8686
"-genkeypair -keyalg XDH -alias e1 -dname CN=E1 -signer ca")
87-
.shouldContain("Generating 255 bit XDH key pair and a certificate (Ed25519) issued by <ca> with a validity of 90 days")
87+
.shouldContain("Generating 255 bit X25519 key pair and a certificate (Ed25519) issued by <ca> with a validity of 90 days")
8888
.shouldContain("for: CN=E1")
8989
.shouldHaveExitValue(0);
9090

@@ -118,7 +118,7 @@ static void testSignerPKCS12() throws Exception {
118118
.shouldContain("Alias name: e1")
119119
.shouldContain("Certificate chain length: 2")
120120
.shouldContain("Signature algorithm name: Ed25519")
121-
.shouldContain("Subject Public Key Algorithm: 255-bit XDH key")
121+
.shouldContain("Subject Public Key Algorithm: 255-bit X25519 key")
122122
.shouldHaveExitValue(0);
123123

124124
// check to make sure that cert's AKID is created from the SKID of the signing cert
@@ -150,7 +150,7 @@ static void testSignerPKCS12() throws Exception {
150150
System.out.println("Generating an X448 cert with -signer option");
151151
SecurityTools.keytool("-keystore ks -storepass changeit " +
152152
"-genkeypair -keyalg X448 -alias e2 -dname CN=E2 -sigalg SHA384withRSA -signer ca2")
153-
.shouldContain("Generating 448 bit XDH key pair and a certificate (SHA384withRSA) issued by <ca2> with a validity of 90 days")
153+
.shouldContain("Generating 448 bit X448 key pair and a certificate (SHA384withRSA) issued by <ca2> with a validity of 90 days")
154154
.shouldContain("for: CN=E2")
155155
.shouldHaveExitValue(0);
156156

@@ -177,7 +177,7 @@ static void testSignerPKCS12() throws Exception {
177177
"-list -v")
178178
.shouldContain("Alias name: e2")
179179
.shouldContain("Signature algorithm name: SHA384withRSA")
180-
.shouldContain("Subject Public Key Algorithm: 448-bit XDH key")
180+
.shouldContain("Subject Public Key Algorithm: 448-bit X448 key")
181181
.shouldHaveExitValue(0);
182182

183183
kt("-genkeypair -keyalg DSA -alias ca3 -dname CN=CA3 -ext bc:c ",
@@ -249,7 +249,7 @@ static void testSignerJKS() throws Exception {
249249
SecurityTools.keytool("-keystore ksjks -storepass changeit -storetype jks " +
250250
"-genkeypair -keyalg XDH -alias e1 -dname CN=E1 " +
251251
"-keypass e1keypass -signer ca1 -signerkeypass ca1keypass")
252-
.shouldContain("Generating 255 bit XDH key pair and a certificate (SHA256withDSA) issued by <ca1> with a validity of 90 days")
252+
.shouldContain("Generating 255 bit X25519 key pair and a certificate (SHA256withDSA) issued by <ca1> with a validity of 90 days")
253253
.shouldContain("for: CN=E1")
254254
.shouldContain("The generated certificate #2 of 3 uses a 1024-bit DSA key which is considered a security risk")
255255
.shouldContain("The generated certificate #3 of 3 uses a 1024-bit RSA key which is considered a security risk")
@@ -285,7 +285,7 @@ static void testSignerJKS() throws Exception {
285285
.shouldContain("Alias name: e1")
286286
.shouldContain("Certificate chain length: 3")
287287
.shouldContain("Signature algorithm name: SHA256withDSA")
288-
.shouldContain("Subject Public Key Algorithm: 255-bit XDH key")
288+
.shouldContain("Subject Public Key Algorithm: 255-bit X25519 key")
289289
.shouldHaveExitValue(0);
290290
}
291291

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Oct 14, 2024

@openjdk-notifier[bot]
Please sign in to comment.