Skip to content

Commit f46564d

Browse files
authored
Merge pull request #4 from edquist/SOFTWARE-4436.trustid-x3-root
add missing CA for Let's Encrypt intermediate cert
2 parents 2edf3b7 + 6a3e3ba commit f46564d

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

Makefile

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,21 @@ sources = isrgrootx1.signing_policy \
33
letsencryptauthorityx4.signing_policy \
44
lets-encrypt-r3.signing_policy \
55
lets-encrypt-r4.signing_policy \
6+
trustid-x3-root.signing_policy \
67

78
targets = 23c2f850.signing_policy 4042bcee.signing_policy \
89
4a0a35c0.signing_policy 4f06f81d.signing_policy \
910
6187b673.signing_policy 929e297e.signing_policy \
1011
8d33f237.signing_policy dec71a0b.signing_policy \
1112
9f194ecd.signing_policy dd7d39a7.signing_policy \
13+
12d55845.signing_policy 2e5ac55d.signing_policy \
1214
23c2f850.0 4042bcee.0 \
1315
4a0a35c0.0 4f06f81d.0 \
1416
6187b673.0 8d33f237.0 \
1517
929e297e.0 9f194ecd.0 \
1618
dec71a0b.0 dd7d39a7.0 \
17-
isrgrootx1.pem \
19+
12d55845.0 2e5ac55d.0 \
20+
isrgrootx1.pem trustid-x3-root.pem \
1821
letsencryptauthorityx3.pem letsencryptauthorityx4.pem \
1922
lets-encrypt-r3.pem lets-encrypt-r4.pem
2023

@@ -58,17 +61,25 @@ dec71a0b.signing_policy : lets-encrypt-r3.signing_policy
5861
$(LINK) lets-encrypt-r3.signing_policy dec71a0b.signing_policy
5962
dd7d39a7.signing_policy : lets-encrypt-r4.signing_policy
6063
$(LINK) lets-encrypt-r4.signing_policy dd7d39a7.signing_policy
64+
12d55845.signing_policy : trustid-x3-root.signing_policy
65+
$(LINK) trustid-x3-root.signing_policy 12d55845.signing_policy
66+
2e5ac55d.signing_policy : trustid-x3-root.signing_policy
67+
$(LINK) trustid-x3-root.signing_policy 2e5ac55d.signing_policy
6168

6269
23c2f850.0 : letsencryptauthorityx4.pem
6370
$(LINK) letsencryptauthorityx4.pem 23c2f850.0
6471
4042bcee.0 : isrgrootx1.pem
6572
$(LINK) isrgrootx1.pem 4042bcee.0
73+
2e5ac55d.0 : trustid-x3-root.pem
74+
$(LINK) trustid-x3-root.pem 2e5ac55d.0
6675
4a0a35c0.0 : letsencryptauthorityx3.pem
6776
$(LINK) letsencryptauthorityx3.pem 4a0a35c0.0
6877
4f06f81d.0 : letsencryptauthorityx3.pem
6978
$(LINK) letsencryptauthorityx3.pem 4f06f81d.0
7079
6187b673.0 : isrgrootx1.pem
7180
$(LINK) isrgrootx1.pem 6187b673.0
81+
12d55845.0 : trustid-x3-root.pem
82+
$(LINK) trustid-x3-root.pem 12d55845.0
7283
8d33f237.0 : lets-encrypt-r3.pem
7384
$(LINK) lets-encrypt-r3.pem 8d33f237.0
7485
929e297e.0 : letsencryptauthorityx4.pem
@@ -82,6 +93,8 @@ dd7d39a7.0 : lets-encrypt-r4.pem
8293

8394
isrgrootx1.pem :
8495
$(GET) https://letsencrypt.org/certs/isrgrootx1.pem
96+
trustid-x3-root.pem :
97+
$(GET) https://letsencrypt.org/certs/trustid-x3-root.pem
8598
lets-encrypt-r3.pem :
8699
$(GET) https://letsencrypt.org/certs/lets-encrypt-r3.pem
87100
lets-encrypt-r4.pem :

trustid-x3-root.signing_policy

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
access_id_CA X509 '/C=US/O=Digital Signature Trust Co./CN=DST Root CA X3'
2+
pos_rights globus CA:sign
3+
cond_subjects globus '"/C=US/O=Let\'s Encrypt/CN=Let\'s Encrypt Authority X3" "/C=US/O=Let\'s Encrypt/CN=Let\'s Encrypt Authority X4" "/C=US/O=Let\'s Encrypt/CN=R3" "/C=US/O=Let\'s Encrypt/CN=R4"'

0 commit comments

Comments
 (0)