Skip to content

Commit 2ec45dc

Browse files
committedJul 29, 2021
8225082: Remove IdenTrust certificate that is expiring in September 2021
Reviewed-by: shade, mullan
1 parent 25f00d7 commit 2ec45dc

File tree

2 files changed

+3
-34
lines changed

2 files changed

+3
-34
lines changed
 

‎make/data/cacerts/identrustdstx3

-27
This file was deleted.

‎test/jdk/sun/security/lib/cacerts/VerifyCACerts.java

+3-7
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* @bug 8189131 8198240 8191844 8189949 8191031 8196141 8204923 8195774 8199779
2828
* 8209452 8209506 8210432 8195793 8216577 8222089 8222133 8222137 8222136
2929
* 8223499 8225392 8232019 8234245 8233223 8225068 8225069 8243321 8243320
30-
* 8243559 8225072 8258630 8259312 8256421 8225081
30+
* 8243559 8225072 8258630 8259312 8256421 8225081 8225082
3131
* @summary Check root CA entries in cacerts file
3232
*/
3333
import java.io.ByteArrayInputStream;
@@ -54,12 +54,12 @@ public class VerifyCACerts {
5454
+ File.separator + "security" + File.separator + "cacerts";
5555

5656
// The numbers of certs now.
57-
private static final int COUNT = 91;
57+
private static final int COUNT = 90;
5858

5959
// SHA-256 of cacerts, can be generated with
6060
// shasum -a 256 cacerts | sed -e 's/../&:/g' | tr '[:lower:]' '[:upper:]' | cut -c1-95
6161
private static final String CHECKSUM
62-
= "9B:C3:0B:24:D4:26:E4:A9:4F:2C:96:25:06:9B:08:E5:13:5B:0B:33:74:5F:78:DB:BD:91:CD:31:D4:37:07:28";
62+
= "A2:36:27:B7:F6:99:7A:C7:7E:2D:55:47:66:57:08:3F:F8:8C:F2:28:77:29:30:40:A2:D3:6D:1A:B6:C7:32:6F";
6363

6464
// Hex formatter to upper case with ":" delimiter
6565
private static final HexFormat HEX = HexFormat.ofDelimiter(":").withUpperCase();
@@ -148,8 +148,6 @@ public class VerifyCACerts {
148148
"49:E7:A4:42:AC:F0:EA:62:87:05:00:54:B5:25:64:B6:50:E4:F4:9E:42:E3:48:D6:AA:38:E0:39:E9:57:B1:C1");
149149
put("dtrustclass3ca2ev [jdk]",
150150
"EE:C5:49:6B:98:8C:E9:86:25:B9:34:09:2E:EC:29:08:BE:D0:B0:F3:16:C2:D4:73:0C:84:EA:F1:F3:D3:48:81");
151-
put("identrustdstx3 [jdk]",
152-
"06:87:26:03:31:A7:24:03:D9:09:F1:05:E6:9B:CF:0D:32:E1:BD:24:93:FF:C6:D9:20:6D:11:BC:D6:77:07:39");
153151
put("identrustpublicca [jdk]",
154152
"30:D0:89:5A:9A:44:8A:26:20:91:63:55:22:D1:F5:20:10:B5:86:7A:CA:E1:2C:78:EF:95:8F:D4:F4:38:9F:2F");
155153
put("identrustcommercial [jdk]",
@@ -268,8 +266,6 @@ public class VerifyCACerts {
268266
add("luxtrustglobalrootca [jdk]");
269267
// Valid until: Wed Mar 17 11:33:33 PDT 2021
270268
add("quovadisrootca [jdk]");
271-
// Valid until: Thu Sep 30 14:01:15 GMT 2021
272-
add("identrustdstx3 [jdk]");
273269
}
274270
};
275271

0 commit comments

Comments
 (0)
Please sign in to comment.