Skip to content
This repository was archived by the owner on Jan 13, 2023. It is now read-only.

Commit f05a9fc

Browse files
Update cacerts
Backport of corretto/corretto-jdk@f177fe4 18 is currently still missing an exclusion for `geotrustglobalca [jdk]` so there was a conflict. I resolved by omitting that exclusion, we'll get that later from upstream, it's not the intent of this patch.
1 parent 751d07f commit f05a9fc

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

amazon-cacerts

-1.93 KB
Binary file not shown.

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

+10-2
Original file line numberDiff line numberDiff line change
@@ -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 = 89;
57+
private static final int COUNT = 221;
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-
= "0D:9C:40:8F:CE:B1:C7:27:89:54:FD:80:DA:B6:91:F4:C9:94:15:C4:8D:25:62:34:D4:70:32:60:1A:6F:13:27";
62+
= "2C:35:DC:6F:AD:22:58:0B:3E:47:9B:A6:75:C5:3E:CD:09:29:E7:96:50:30:2F:FF:C5:4A:EE:72:58:76:8A:B7";
6363

6464
// Hex formatter to upper case with ":" delimiter
6565
private static final HexFormat HEX = HexFormat.ofDelimiter(":").withUpperCase();
@@ -264,6 +264,14 @@ public class VerifyCACerts {
264264
add("luxtrustglobalrootca [jdk]");
265265
// Valid until: Wed Mar 17 11:33:33 PDT 2021
266266
add("quovadisrootca [jdk]");
267+
268+
// Amazon Linux
269+
add("dstrootcax3");
270+
add("soneraclass2rootca");
271+
add("globalsignrootca-r2");
272+
add("geotrustglobalca");
273+
add("quovadisrootca");
274+
add("cybertrustglobalroot");
267275
}
268276
};
269277

0 commit comments

Comments
 (0)