1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -84,7 +84,7 @@ static void testSignerPKCS12() throws Exception {
84
84
System .out .println ("Generating an XDH cert with -signer option" );
85
85
SecurityTools .keytool ("-keystore ks -storepass changeit " +
86
86
"-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" )
88
88
.shouldContain ("for: CN=E1" )
89
89
.shouldHaveExitValue (0 );
90
90
@@ -118,7 +118,7 @@ static void testSignerPKCS12() throws Exception {
118
118
.shouldContain ("Alias name: e1" )
119
119
.shouldContain ("Certificate chain length: 2" )
120
120
.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" )
122
122
.shouldHaveExitValue (0 );
123
123
124
124
// 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 {
150
150
System .out .println ("Generating an X448 cert with -signer option" );
151
151
SecurityTools .keytool ("-keystore ks -storepass changeit " +
152
152
"-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" )
154
154
.shouldContain ("for: CN=E2" )
155
155
.shouldHaveExitValue (0 );
156
156
@@ -177,7 +177,7 @@ static void testSignerPKCS12() throws Exception {
177
177
"-list -v" )
178
178
.shouldContain ("Alias name: e2" )
179
179
.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" )
181
181
.shouldHaveExitValue (0 );
182
182
183
183
kt ("-genkeypair -keyalg DSA -alias ca3 -dname CN=CA3 -ext bc:c " ,
@@ -249,7 +249,7 @@ static void testSignerJKS() throws Exception {
249
249
SecurityTools .keytool ("-keystore ksjks -storepass changeit -storetype jks " +
250
250
"-genkeypair -keyalg XDH -alias e1 -dname CN=E1 " +
251
251
"-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" )
253
253
.shouldContain ("for: CN=E1" )
254
254
.shouldContain ("The generated certificate #2 of 3 uses a 1024-bit DSA key which is considered a security risk" )
255
255
.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 {
285
285
.shouldContain ("Alias name: e1" )
286
286
.shouldContain ("Certificate chain length: 3" )
287
287
.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" )
289
289
.shouldHaveExitValue (0 );
290
290
}
291
291
1 commit comments
openjdk-notifier[bot] commentedon Oct 14, 2024
Review
Issues