-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathfpkinotifications.yml
6786 lines (6282 loc) · 373 KB
/
fpkinotifications.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#data file for fpki-guides change notification
# Instructions to directly add the notifications to the yml file. Please follow the guidelines in this document to insert a system change or planned outage notification into the FPKI system change notifications. _fpki/7_fpki_notifications.md processes the data in the notifications.yml for display. The latest notification entry in notification.yml will be displayed at the top of the notification list. The other notifications are displayed in the descending order of the notification time. The notification data can be provided as a GitHub issue or via email. Once the notification data is received, a member of the FPKI team OR the submitting organization should follow the instructions below to add the notification to the list.
# Retrieve notification from GitHub Issue: Access the FPKI-Guide issues list at https://github.com/GSA/fpki-guides/issues. Select 'System Notification' tag. Retrieve the latest issues under 'System Notification'. Add an Issue comment to each that you are updating the System Notifications
# Retrieve notification from an email: Retrieve the notification data from the email.
# Add the Notification to GitHub: Click on the edit icon. Copy/paste the notification content to the end of _data/notifications.yml file. Add a dash "-" at the beginning of what you added (refer to existing notification entries for position and spacing). Submit a Pull Request, OR commit directly to the staging branch if you have permissions In your commit, add the comment "fixes " and the Issue number that you are adding to the notifications page
# View the new item at https://demo.idmanagement.gov
#notice_date: notice date in <Month Day, Year>
#change_type: < CA Certificate Issuance, CA Certificate Revocation, New CA, CA Termination, New URI in Certificates, OCSP Outage, CRL Outage >
#system: <what is the system known as>
#change_description: <detailed statement>
#contact: <email, phone>
### The following are all optional fields based on the change type
# ca_certificate_hash: <the sha1 thumbprint of the certificate>
# ca_certificate_issuer: <the issuer DN of the CA certificate>
# ca_certificate_subject: <the subject DN of the CA certificate>
# cdp_uri:
# aia_uri:
# sia_uri:
# ocsp_uri:
# ee_cdp_uri:
# ee_ocsp_uri:
- notice_date: January 10, 2025
change_type: CA Certificate Issuance
system: FPKI Trust Infrastructure - Federal Bridge CA G4
change_description: The Federal Bridge CA G4 issued a new certificate to the STRAC Bridge Root Certification Authority on 01/07/2025.
contact: fpki dash help at gsa dot gov
ca_certificate_hash: bddbb99bdcc315f4bacb44f0518895ad2a283b08
ca_certificate_issuer: CN=Federal Bridge CA G4, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: STRAC Bridge Root Certification Authority, OU = STRAC PKI Trust Infrastructure, O = STRAC, C = US
cdp_uri: http://repo.fpki.gov/bridge/fbcag4.crl
aia_uri: http://repo.fpki.gov/bridge/caCertsIssuedTofbcag4.p7c
sia_uri: http://pki.strac.org/bridge/certificates/STRACBridgeRootCA.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: http://pki.strac.org/bridge/crl/STRACBridgeRootCA.crl
- notice_date: January 10, 2025
change_type: CA Certificate Issuance
system: FPKI Trust Infrastructure - Federal Common Policy CA G2
change_description: The Federal Common Policy CA G2 issued a new certificate to the US Treasury Root CA on 01/07/2025.
contact: fpki dash help at gsa dot gov
ca_certificate_hash: acf3948806eda1ea966a4d484f7ce0d1b7bbce20
ca_certificate_issuer: CN=Federal Common Policy CA G2, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: OU=US Treasury Root CA, OU=Certification Authorities, OU=Department of the Treasury, O=U.S. Government, C=US
cdp_uri: http://repo.fpki.gov/fcpca/fcpcag2.crl
aia_uri: http://repo.fpki.gov/fcpca/caCertsIssuedTofcpcag2.p7c
sia_uri: http://pki.treasury.gov/root_sia.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: http://pki.treasury.gov/US_Treasury_Root_CA.crl
- notice_date: December 19, 2024
change_type: Intent to issue CA Certificate
system: FPKI Trust Infrastructure - Federal Bridge CA G4
change_description: The Federal Bridge CA G4 intends to issue a new certificate to the STRAC Bridge Root Certification Authority between 01/07/2025 and 01/14/2025
contact: fpki dash help at gsa dot gov
ca_certificate_hash: TBD
ca_certificate_issuer: CN=Federal Bridge CA G4, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: STRAC Bridge Root Certification Authority, OU = STRAC PKI Trust Infrastructure, O = STRAC, C = US
cdp_uri: http://repo.fpki.gov/bridge/fbcag4.crl
aia_uri: http://repo.fpki.gov/bridge/caCertsIssuedTofbcag4.p7c
sia_uri: http://pki.strac.org/bridge/certificates/STRACBridgeRootCA.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: http://pki.strac.org/bridge/crl/STRACBridgeRootCA.crl
- notice_date: December 17, 2024
change_type: Intent to issue CA Certificate
system: FPKI Trust Infrastructure - Federal Common Policy CA G2
change_description: The Federal Common Policy CA G2 intends to issue a new certificate to the US Treasury Root CA between 01/07/2025 and 01/14/2025
contact: fpki dash help at gsa dot gov
ca_certificate_hash: TBD
ca_certificate_issuer: CN=Federal Common Policy CA G2, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: OU=US Treasury Root CA, OU=Certification Authorities, OU=Department of the Treasury, O=U.S. Government, C=US
cdp_uri: http://repo.fpki.gov/fcpca/fcpcag2.crl
aia_uri: http://repo.fpki.gov/fcpca/caCertsIssuedTofcpcag2.p7c
sia_uri: http://pki.treasury.gov/root_sia.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: http://pki.treasury.gov/US_Treasury_Root_CA.crl
- notice_date: November 6, 2024
change_type: CA Certificate Renewal
system: FPKI Trust Infrastructure - Federal Bridge CA G4
change_description: The Federal Bridge CA G4 performed a certificate renewal to Entrust Managed Services NFI Root CA on 9/11/2024. The current certificate is expired on 11/03/2024.
contact: fpki dash help at gsa dot gov
ca_certificate_hash: 3cf99604c5a775a5393216768078097f9eb00503
ca_certificate_issuer: CN=Federal Bridge CA G4, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: OU = Entrust Managed Services NFI Root CA, OU = Certification Authorities, O = Entrust, C = US
cdp_uri: http://repo.fpki.gov/bridge/fbcag4.crl
aia_uri: http://repo.fpki.gov/bridge/caCertsIssuedTofbcag4.p7c
sia_uri: http://nfirootweb.managed.entrust.com/SIA/CAcertsIssuedByNFIRootCA.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: October 24, 2024
change_type: Intent to Renew a CA Certificate
system: DoD Interoperability Root CA 2
change_description: The DoD Interoperability Root CA 2 will be renewing a cross-certificate to the DoD Root CA 3; however, it will not be published in public repositories until the current expiration date of November 16th.
contact: dodpke at mail dot mil
ca_certificate_hash: TBD
ca_certificate_issuer: CN=DoD Interoperability Root CA 2, OU=PKI, OU=DoD, O=U.S. Government, C=US
ca_certificate_subject: CN = DoD Root CA 3, OU = PKI, OU = DoD, O = U.S. Government, C = US
cdp_uri: http://crl.disa.mil/crl/DODINTEROPERABILITYROOTCA2.crl
aia_uri: http://crl.disa.mil/issuedto/DODINTEROPERABILITYROOTCA2_IT.p7c
sia_uri: http://crl.disa.mil/issuedby/DODINTEROPERABILITYROOTCA2_IB.p7c
ocsp_uri: http://ocsp.disa.mil/
ee_cdp_uri: http://crl.disa.mil/crl/DODROOTCA3.crl
ee_ocsp_uri: http://ocsp.disa.mil/
- notice_date: October 10, 2024
change_type: CA Certificate Issuance
system: IdenTrust Global Common CA 1
change_description: The IdenTrust Global Common CA 1 issued a CA certificate for a new IdenTrust Global Common CA 2 on 010/2/2024.
contact: product at IdenTrust dot com
ca_certificate_hash: d1cf02d15fccc26e7b621c8d2f90259d9a3f93b3
ca_certificate_issuer: CN = IdenTrust Global Common Root CA 1, O = IdenTrust, C = US
ca_certificate_subject: CN = IGC CA 2, OU = IdenTrust Global Common, O = IdenTrust, C = US
cdp_uri: http://validation.identrust.com/crl/igcrootca1.crl
aia_uri: http://validation.identrust.com/roots/igcrootca1.p7c
sia_uri: N/A
ocsp_uri: http://igc.ocsp.identrust.com/
ee_cdp_uri: http://igc.ocsp.identrust.com/
ee_ocsp_uri: http://validation.identrust.com/crl/igcca2.crl
- notice_date: August 26, 2024
change_type: Intent to Renew CA Certificate
system: FPKI Trust Infrastructure - Federal Bridge CA G4
change_description: The Federal Bridge CA G4 intends to perform a certificate renewal to Entrust Managed Services NFI Root CA between 09/11/2024 and 09/18/2024. The current certificate is expiring 11/03/2024.
contact: fpki dash help at gsa dot gov
ca_certificate_hash: TBD
ca_certificate_issuer: CN=Federal Bridge CA G4, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: OU = Entrust Managed Services NFI Root CA, OU = Certification Authorities, O = Entrust, C = US
cdp_uri: http://repo.fpki.gov/bridge/fbcag4.crl
aia_uri: http://repo.fpki.gov/bridge/caCertsIssuedTofbcag4.p7c
sia_uri: http://nfirootweb.managed.entrust.com/SIA/CAcertsIssuedByNFIRootCA.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: August 22, 2024
change_type: CA Certificate Revocation
system: Federal Bridge CA G4
change_description: The Federal Bridge CA G4 has revoked the DirectTrust Identity Bridge CA on August 22, 2024.
contact: fpki dash help at gsa dot gov
ca_certificate_hash: ddd7246c86b2e0a3ac2fc7a7dbb7430b935eba2f
ca_certificate_issuer: CN = Federal Bridge CA G4, OU = FPKI, O = U.S. Government, C = US
ca_certificate_subject: CN = DirectTrust Identity Bridge CA, OU = Certification Authorities, O = DirectTrust.org, inc., C = US
cdp_uri: http://repo.fpki.gov/bridge/fbcag4.crlhttp://repo.fpki.gov/bridge/fbcag4.crl
aia_uri: http://repo.fpki.gov/bridge/caCertsIssuedTofbcag4.p7c
sia_uri: http://aia.makeidentitysafe.com/issuedby-sibca.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: August 15, 2024
change_type: CA Certificate Issuance
system: TSCP SHA256 Bridge CA
change_description: The TSCP Bridge CA issued a renewal for a cross-certificate to Carillon Federal Services PIV-I CA2 on August 7, 2024.
contact: info at tscp dot org
ca_certificate_hash: cf1099dad05846a92be3cd7dbd3f912105680f65
ca_certificate_issuer: CN=TSCP SHA256 Bridge CA, OU=CAs, O=TSCP Inc., C=US
ca_certificate_subject: CN=Carillon Federal Services PIV-I CA2, OU=Certification Authorities, O=Carillon Federal Services Inc., C=US
cdp_uri: http://tscp-crl.symauth.com/tscpbcasha256.crl
aia_uri: http://tscp-aia.symauth.com/IssuedTo-tscpbcasha256.p7c
sia_uri: N/A
ocsp_uri: N/A
ee_cdp_uri: http://pub.carillonfedserv.com/CRL/CFSCA2.crl
ee_ocsp_uri: http://pub.carillonfedserv.com/ocsp
- notice_date: August 6, 2024
change_type: CA Certificate Issuance
system: Entrust Managed PKI Federal Root CA G2
change_description: Entrust Managed PKI Federal Root CA G2 issued a renewed cross certificate to Entrust Managed PKI Federal Issuing CA G2 on June 28, 2024.
contact: support at entrust dot com
ca_certificate_hash: 3b94eeab90e1d577f4892705a35abaa076d78849
ca_certificate_issuer: CN = Entrust Managed PKI Federal Root CA G2, OU = Certification Authorities, O = Entrust, C = US
ca_certificate_subject: CN = Entrust Managed PKI Federal Issuing CA G2, OU = Certification Authorities, O = Entrust, C = US
cdp_uri: http://fedrootg2crl.managed.entrust.com/CRLs/FedRootG2CA.crl
aia_uri: http://fedrootg2crl.managed.entrust.com/AIA/CertsIssuedToFedRootCAG2.p7c
sia_uri: N/A
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: July 22, 2024
change_type: Intent to Revoke CA Certificate
system: DirectTrust Identity Bridge CA
change_description: DirectTrust intends to revoke a cross certificate from the DirectTrust Identity Bridge CA to the FBCA G4 in support of their planned cessation of operations. A Long Term CRL is scheduled to be issued and published 8/22/2024.
contact: admin at DirectTrust dot org
ca_certificate_hash: 1623a303cd6d5c61cf049f1b65d6aae2f1e8e19f
ca_certificate_issuer: CN = DirectTrust Identity Bridge CA,OU = Certification Authorities,O = DirectTrust.org, inc.,C = US
ca_certificate_subject: CN = Federal Bridge CA G4, OU = FPKI, O = U.S. Government, C = U
cdp_uri: http://crl.makeidentitysafe.com/sibca.crl
aia_uri: http://aia.makeidentitysafe.com/sibca.p7c
sia_uri: N/A
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: July 22, 2024
change_type: Intent to Revoke CA Certificate
system: DirectTrust Identity Bridge CA
change_description: DirectTrust intends to revoke a cross certificate from the DirectTrust Identity Bridge CA to the Trans Sped Root CA G3 in support of their planned cessation of operations. A Long term CRL is scheduled to be issued and published 8/22/2024.
contact: admin at DirectTrust dot org
ca_certificate_hash: d0575156c2333a2493890b3aee7900fc6ff8620f
ca_certificate_issuer: CN = DirectTrust Identity Bridge CA,OU = Certification Authorities,O = DirectTrust.org, inc.,C = US
ca_certificate_subject: CN = Trans Sped Root CA G3,OU = Trans Sped Trust Services,2.5.4.97 = VATRO-12458924,O = Trans Sped S.A.,C = RO
cdp_uri: http://crl.makeidentitysafe.com/sibca.crl
aia_uri: http://aia.makeidentitysafe.com/sibca.p7c
sia_uri: N/A
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: July 22, 2024
change_type: Intent to Revoke a CA Certificate
system: FPKI Trust Infrastructure - Federal Bridge CA G4
change_description: The Federal Bridge CA G4 intends to revoke the cross certificate to the DirectTrust Identity Bridge CA on or about 8/22/2024 at the request of DirectTrust in support of their planned cessation of operations.
contact: fpki dash help at gsa dot gov
ca_certificate_hash: ddd7246c86b2e0a3ac2fc7a7dbb7430b935eba2f
ca_certificate_issuer: CN=Federal Bridge CA G4, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=DirectTrust Identity Bridge CA, OU=Certification Authorities, O=DirectTrust.org, inc., C=US
cdp_uri: http://repo.fpki.gov/bridge/fbcag4.crl
aia_uri: http://repo.fpki.gov/bridge/caCertsIssuedTofbcag4.p7c
sia_uri: http://aia.makeidentitysafe.com/issuedby-sibca.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: July 19, 2024
change_type: CA Certificate Issuance
system: CertiPath Bridge CA
change_description: The CertiPath Bridge CA-G3 issued a renewed cross certificate to the Raytheon Technologies Medium Assurance CA.
contact: support at certipath dot com
ca_certificate_hash: 966BE877C8CF8A6AD71301234CDCF93717F75765
ca_certificate_issuer: CN=CertiPath Bridge CA - G3, OU=Certification Authorities, O=CertiPath, C=US
ca_certificate_subject: CN=Raytheon Technologies Medium Assurance CA, OU=Class3-G3, O=cas, DC=rtx, DC=com
cdp_uri: http://crl.certipath.com/CertiPathBridgeCA-G3.crl
aia_uri: http://aia.certipath.com/CertiPathBridgeCA-G3.p7c
sia_uri: http://aia.certipath.com/IssuedBy-CertiPathBridgeCA-G3.p7c
ocsp_uri: N/A
ee_cdp_uri: http://pki.rtx.com/G3/CRLs/Class3-G3_Full.crl
ee_ocsp_uri: N/A
- notice_date: July 17, 2024
change_type: Intent to Renew a CA Certificate
system: TSCP SHA256 Bridge CA
change_description: The TSCP Bridge CA intends to renew a cross-certificate to Carillon Federal Services PIV-I CA2 in early to mid-August.
contact: info at tscp dot org
ca_certificate_hash: TBD
ca_certificate_issuer: CN=TSCP SHA256 Bridge CA, OU=CAs, O=TSCP Inc., C=US
ca_certificate_subject: CN=Carillon Federal Services PIV-I CA2, OU=Certification Authorities, O=Carillon Federal Services Inc., C=US
cdp_uri: http://tscp-crl.symauth.com/tscpbcasha256.crl
aia_uri: http://tscp-aia.symauth.com/IssuedTo-tscpbcasha256.p7c
sia_uri: N/A
ocsp_uri: N/A
ee_cdp_uri: http://pub.carillonfedserv.com/CRL/CFSCA2.crl
ee_ocsp_uri: http://pub.carillonfedserv.com/ocsp
- notice_date: July 15, 2024
change_type: CA Certificate Issuance
system: FPKI Trust Infrastructure - Federal Common Policy CA G2
change_description: The Federal Common Policy CA G2 issued a new certificate to the Entrust Managed PKI Federal Root CA G2 on July 9.
contact: fpki dash help at gsa dot gov
ca_certificate_hash: 437fcb8964811d84a1ab1a3c03d3ef485cb341c0
ca_certificate_issuer: CN=Federal Common Policy CA G2, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=Entrust Managed PKI Federal Root CA G2, OU=Certification Authorities, O=Entrust, C=US
cdp_uri: http://repo.fpki.gov/fcpca/fcpcag2.crl
aia_uri: http://repo.fpki.gov/fcpca/caCertsIssuedTofcpcag2.p7c
sia_uri: http://rootweb.managed.entrust.com/SIA/CACertsIssuedByFedRootG2CA.p7c
ocsp_uri: N/A
ee_cdp_uri: http://fedrootg2crl.managed.entrust.com/CRLs/FedRootG2CA.crl
ee_ocsp_uri: http://fedrootg2ocsp.managed.entrust.com
- notice_date: July 10, 2024
change_type: CA Certificate Issuance
system: DoD Interoperability Root CA 2
change_description: The DoD Interoperability Root CA 2 issued a new cross certificate to ECA Root CA 4 on 6/25/2024.
contact: dodpke at mail dot mil
ca_certificate_hash: caae84764872dd246fa9cf9e5a8ed09e9379161b
ca_certificate_issuer: CN=DoD Interoperability Root CA 2, OU=PKI, OU=DoD, O=U.S. Government, C=US
ca_certificate_subject: CN = ECA Root CA 4, OU = ECA, O = U.S. Government, C = US
cdp_uri: http://crl.disa.mil/crl/DODINTEROPERABILITYROOTCA2.crl
aia_uri: http://crl.disa.mil/issuedto/DODINTEROPERABILITYROOTCA2_IT.p7c
sia_uri: http://crl.disa.mil/issuedby/ECAROOTCA5_IB.p7c
ocsp_uri: http://ocsp.disa.mil/
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: June 20, 2024
change_type: Intent to Issue a CA Certificate
system: FPKI Trust Infrastructure - Federal Common Policy CA G2
change_description: The Federal Common Policy CA G2 plans to issue a new certificate to the Entrust Managed PKI Federal Root CA G2 between July 9 and July 15, 2024.
contact: fpki dash help at gsa dot gov
ca_certificate_hash: TBD
ca_certificate_issuer: CN=Federal Common Policy CA G2, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=Entrust Managed PKI Federal Root CA G2, OU=Certification Authorities, O=Entrust, C=US
cdp_uri: http://repo.fpki.gov/fcpca/fcpcag2.crl
aia_uri: http://repo.fpki.gov/fcpca/caCertsIssuedTofcpcag2.p7c
sia_uri: http://fedrootg2crl.managed.entrust.com/AIA/CertsIssuedByFedRootCAG2.p7c
ocsp_uri: N/A
ee_cdp_uri: http://fedrootg2crl.managed.entrust.com/CRLs/FedRootG2CA.crl
ee_ocsp_uri: http://fedrootg2ocsp.managed.entrust.com
- notice_date: June 20, 2024
change_type: Intent to Issue a CA Certificate
system: Entrust SSP
change_description: Entrust plans to issue a new PIV issuing CA on or around June 28th, 2024.
contact: support at entrust dot com
ca_certificate_hash: TBD
ca_certificate_issuer: CN=Entrust Managed PKI Federal Root CA G2, OU=Certification Authorities, O=Entrust, C=US
ca_certificate_subject: CN=Entrust Managed PKI Federal Issuing CA G2, OU=Certification Authorities, O=Entrust, C=US
cdp_uri: http://fedrootg2crl.managed.entrust.com/CRLs/FedRootG2CA.crl
aia_uri: http://fedrootg2crl.managed.entrust.com/AIA/CertsIssuedToFedRootCAG2.p7c
sia_uri: N/A
ocsp_uri: http://fedrootg2ocsp.managed.entrust.com
ee_cdp_uri: TBD
ee_ocsp_uri: TBD
- notice_date: May 14, 2024
change_type: CA Certificate Issuance
system: DoD Interoperability Root CA 2
change_description: The DoD Interoperability Root CA 2 issued a new cross certificate to ECA Root CA 5 on 5/7/2024.
contact: dodpke at mail dot mil
ca_certificate_hash: d4a8acc6608fa7152d6d5eaabe87c10f7c3460de
ca_certificate_issuer: CN=DoD Interoperability Root CA 2, OU=PKI, OU=DoD, O=U.S. Government, C=US
ca_certificate_subject: CN = ECA Root CA 5, OU = ECA, O = U.S. Government, C = US
cdp_uri: http://crl.disa.mil/crl/DODINTEROPERABILITYROOTCA2.crl
aia_uri: http://crl.disa.mil/issuedto/DODINTEROPERABILITYROOTCA2_IT.p7c
sia_uri: http://crl.disa.mil/issuedby/ECAROOTCA5_IB.p7c
ocsp_uri: http://ocsp.disa.mil/
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: May 14, 2024
change_type: CA Certificate Issuance
system: ECA Root CA 5
change_description: The ECA Root CA 5 issued a new subordinate CA certificate to WidePoint ECA 9 on 5/7/2024; however, it is unknown when end-entity certificates will begin to be issued.
contact: dodpke at mail dot mil
ca_certificate_hash: 259d0edd9b3d87b8ecddc9053e0fc8c253bac9e8
ca_certificate_issuer: CN = ECA Root CA 5, OU = ECA, O = U.S. Government, C = US
ca_certificate_subject: CN = WidePoint ECA 9, OU= Certification Authorities, OU=ECA, O=U.S. Government, C=US
cdp_uri: http://crl.disa.mil/crl/ECAROOTCA5.crl
aia_uri: http://crl.disa.mil/issuedby/ECAROOTCA5_IT.p7c
sia_uri: N/A
ocsp_uri: http://ocsp.disa.mil/
ee_cdp_uri: http://eca.orc.com/CRLs/WIDEPOINTECA9.crl
ee_ocsp_uri: http://eva.orc.com/
- notice_date: May 8, 2024
change_type: Intent to Modify a CA Certificate
system: WidePoint SSP
change_description: The WidePoint SSP Intermediate CA intends to issue a modified certificate to the U.S. Department of Transportation Agency CA G6 in the near future. Once the new certificate is accepted and published, the previous certificate will be revoked.
contact: WCSC-PKIPolicy at widepoint dot com
ca_certificate_hash: TBD
ca_certificate_issuer: CN = WidePoint SSP Intermediate CA, O=ORC PKI, C=US
ca_certificate_subject: CN = U.S. Department of Transportation Agency CA G6, OU = U.S. Department of Transportation, O = U.S. Government, C=US
cdp_uri: http://crl-server.orc.com/CRLs/WPSSPIntCA.crl
aia_uri: http://crl-server.orc.com/caCerts/caCertsIssuedToWPSSPIntCA.p7c
sia_uri: http://crl-server.orc.com/caCerts/caCertsIssuedByWPSSPIntCA.p7c
ocsp_uri: N/A
ee_cdp_uri: http://crl-server.orc.com/CRLs/DoTAgencyCAG6.crl
ee_ocsp_uri: http://dotagencyg6.eva.orc.com/
- notice_date: May 8, 2024
change_type: Intent to Modify a CA Certificate
system: WidePoint SSP
change_description: The WidePoint SSP Intermediate CA intends to issue a modified certificate to the U.S. Department of Transportation Device CA G6 in the near future. Once the new certificate is accepted and published, the previous certificate will be revoked.
contact: WCSC-PKIPolicy at widepoint dot com
ca_certificate_hash: TBD
ca_certificate_issuer: CN = WidePoint SSP Intermediate CA, O=ORC PKI, C=US
ca_certificate_subject: CN = U.S. Department of Transportation Device CA G6, OU = U.S. Department of Transportation, O = U.S. Government, C=US
cdp_uri: http://crl-server.orc.com/CRLs/WPSSPIntCA.crl
aia_uri: http://crl-server.orc.com/caCerts/caCertsIssuedToWPSSPIntCA.p7c
sia_uri: http://crl-server.orc.com/caCerts/caCertsIssuedByWPSSPIntCA.p7c
ocsp_uri: http://ssp5.eva.orc.com
ee_cdp_uri: http://crl-server.orc.com/CRLs/DoTDeviceCAG6.crl
ee_ocsp_uri: http://dotdeviceg6.eva.orc.com/
- notice_date: May 8, 2024
change_type: Intent to Revoke a CA Certificate
system: WidePoint SSP
change_description: The WidePoint SSP Intermediate CA intends to revoke a CA certificate issued to the U.S. Department of Transportation Agency CA G6. This certificate is being replaced by a modified CA certificate and will be revoked 30 days following the publication of the new CA certificate.
contact: WCSC-PKIPolicy at widepoint dot com
ca_certificate_hash: 7b6dcb34ab284ec897f0ffe1a2f8f95082f09c74
ca_certificate_issuer: CN = WidePoint SSP Intermediate CA, O=ORC PKI, C=US
ca_certificate_subject: CN = U.S. Department of Transportation Agency CA G6, OU = U.S. Department of Transportation, O = U.S. Government, C=US
cdp_uri: http://crl-server.orc.com/CRLs/WPSSPIntCA.crl
aia_uri: http://crl-server.orc.com/caCerts/caCertsIssuedToWPSSPIntCA.p7c
sia_uri: http://crl-server.orc.com/caCerts/caCertsIssuedByWPSSPIntCA.p7c
ocsp_uri: N/A
ee_cdp_uri: http://crl-server.orc.com/CRLs/DoTAgencyCAG6.crl
ee_ocsp_uri: http://dotagencyg6.eva.orc.com/
- notice_date: May 8, 2024
change_type: Intent to Revoke a CA Certificate
system: WidePoint SSP
change_description: The WidePoint SSP Intermediate CA intends to revoke a CA certificate issued to the U.S. Department of Transportation device CA G6. This certificate is being replaced by a modified CA certificate and will be revoked 30 days following the publication of the new CA certificate.
contact: WCSC-PKIPolicy at widepoint dot com
ca_certificate_hash: e0f1bd791fe607a6a3b1f5528eab4687dbbb9dce
ca_certificate_issuer: CN = WidePoint SSP Intermediate CA, O=ORC PKI, C=US
ca_certificate_subject: CN = U.S. Department of Transportation Device CA G6, OU = U.S. Department of Transportation, O = U.S. Government, C=US
cdp_uri: http://crl-server.orc.com/CRLs/WPSSPIntCA.crl
aia_uri: http://crl-server.orc.com/caCerts/caCertsIssuedToWPSSPIntCA.p7c
sia_uri: http://crl-server.orc.com/caCerts/caCertsIssuedByWPSSPIntCA.p7c
ocsp_uri: N/A
ee_cdp_uri: http://crl-server.orc.com/CRLs/DoTDeviceCAG6.crl
ee_ocsp_uri: http://dotdeviceg6.eva.orc.com/
- notice_date: April 29, 2024
change_type: CA Certificate Issuance
system: CertiPath Bridge CA - G3
change_description: CertiPath intends to issue a new cross certificate to Lockheed Martin Root CA 6 on April 23, 2024.
contact: support at certipath dot com
ca_certificate_hash: 9be5b2354aae8641d4f9f43a7fb5af33e002f8e6
ca_certificate_issuer: CN=CertiPath Bridge CA - G3, OU=Certification Authorities, O=CertiPath, C=US
ca_certificate_subject: CN=Lockheed Martin Root Certification Authority 6, OU=Certification Authorities , O=Lockheed Martin Corporation, L=Denver, S=Colorado C=US
cdp_uri: http://crl.certipath.com/CertiPathBridgeCA-G3.crl
aia_uri: http://aia.certipath.com/CertiPathBridgeCA-G3.p7c
sia_uri: http://crl.external.lmco.com/crl/certupd/issuedby-lmrca6.p7c
ocsp_uri: N/A
- notice_date: April 29, 2024
change_type: CA Certificate Issuance
system: CertiPath Bridge CA - G3
change_description: CertiPath intends to issue a new cross certificate to Lockheed Martin Root CA 2 on April 23, 2024.
contact: support at certipath dot com
ca_certificate_hash: cccd407e90bc9184f04996181bd230a34b583da6
ca_certificate_issuer: CN=CertiPath Bridge CA - G3, OU=Certification Authorities, O=CertiPath, C=US
ca_certificate_subject: CN=Lockheed Martin Root Certification Authority 2, OU=Certification Authorities , O=Lockheed Martin Corporation, L=Denver, S=Colorado C=US
cdp_uri: http://crl.certipath.com/CertiPathBridgeCA-G3.crl
aia_uri: http://aia.certipath.com/CertiPathBridgeCA-G3.p7c
sia_uri: http://crl.external.lmco.com/crl/certupd/issuedby-lmrca2.p7c
ocsp_uri: N/A
- notice_date: April 29, 2024
change_type: CA Certificate Issuance
system: CertiPath Bridge CA - G3
change_description: CertiPath issued a new cross certificate to the Boeing Company on April 23, 2024.
contact: support at certipath dot com
ca_certificate_hash: cb2bad7fc503492d4c9e68fa74f904fd429bf337
ca_certificate_issuer: CN = CertiPath Bridge CA - G3, OU = Certification Authorities, O = CertiPath, C = US
ca_certificate_subject: CN = Boeing PCA G3, OU = certservers, O = Boeing, C = US
cdp_uri: http://crl.certipath.com/CertiPathBridgeCA-G3.crl
aia_uri: http://aia.certipath.com/CertiPathBridgeCA-G3.p7c
sia_uri: http://crl.boeing.com/crl/IssuedByBoeingPCAG3.p7c
ocsp_uri: N/A
- notice_date: April 3, 2024
change_type: Intent to Issue CA Certificate
system: CertiPath Bridge CA - G3
change_description: CertiPath intends to issue a new cross certificate to Lockheed Martin Root CA 6 on or about April 16, 2024.
contact: support at certipath dot com
ca_certificate_hash: N/A
ca_certificate_issuer: CN=CertiPath Bridge CA - G3, OU=Certification Authorities, O=CertiPath, C=US
ca_certificate_subject: CN=Lockheed Martin Root Certification Authority 6, OU=Certification Authorities , O=Lockheed Martin Corporation, L=Denver, S=Colorado C=US
cdp_uri: http://crl.certipath.com/CertiPathBridgeCA-G3.crl
aia_uri: http://aia.certipath.com/CertiPathBridgeCA-G3.p7c
sia_uri: N/A
ocsp_uri: N/A
- notice_date: April 3, 2024
change_type: Intent to Issue CA Certificate
system: CertiPath Bridge CA - G3
change_description: CertiPath intends to issue a new cross certificate to Lockheed Martin Root CA 2 on or about April 16, 2024.
contact: support at certipath dot com
ca_certificate_hash: N/A
ca_certificate_issuer: CN=CertiPath Bridge CA - G3, OU=Certification Authorities, O=CertiPath, C=US
ca_certificate_subject: CN=Lockheed Martin Root Certification Authority 2, OU=Certification Authorities , O=Lockheed Martin Corporation, L=Denver, S=Colorado C=US
cdp_uri: http://crl.certipath.com/CertiPathBridgeCA-G3.crl
aia_uri: http://aia.certipath.com/CertiPathBridgeCA-G3.p7c
sia_uri: N/A
ocsp_uri: N/A
- notice_date: April 3, 2024
change_type: Intent to Issue CA Certificate
system: CertiPath Bridge CA - G3
change_description: CertiPath intends to issue a new cross certificate to the Boeing Company on or about April 16, 2024.
contact: support at certipath dot com
ca_certificate_hash: N/A
ca_certificate_issuer: CN = CertiPath Bridge CA - G3, OU = Certification Authorities, O = CertiPath, C = US
ca_certificate_subject: CN = Boeing PCA G3, OU = certservers, O = Boeing, C = US
cdp_uri: http://crl.certipath.com/CertiPathBridgeCA-G3.crl
aia_uri: http://aia.certipath.com/CertiPathBridgeCA-G3.p7c
sia_uri: N/A
ocsp_uri: N/A
- notice_date: April 2, 2024
change_type: CA Certificate Issuance
system: FPKI Trust Infrastructure - Federal Bridge CA G4
change_description: The Federal Bridge CA G4 performed a certificate renewal to IdenTrust Global Common Root CA 1.
contact: fpki dash help at gsa dot gov
ca_certificate_hash: fea17f8b3639b5d4adaf350b5427fac905463312
ca_certificate_issuer: CN=Federal Bridge CA G4, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=IdenTrust Global Common Root CA 1, O=IdenTrust, C=US
cdp_uri: http://repo.fpki.gov/bridge/fbcag4.crl
aia_uri: http://repo.fpki.gov/bridge/caCertsIssuedTofbcag4.p7c
sia_uri: http://validation.identrust.com/roots/IssuedbyIGCRootCA1.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: March 15, 2024
change_type: Intent for CA Certificate Issuance
system: FPKI Trust Infrastructure - Federal Bridge CA G4
change_description: The Federal Bridge CA G4 intends to perform a certificate renewal to IdenTrust Global Common Root CA 1 between 03/28/2024 and 04/04/2024. The current certificate is expiring 4/28/2024.
contact: fpki dash help at gsa dot gov
ca_certificate_hash: TBD
ca_certificate_issuer: CN=Federal Bridge CA G4, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=IdenTrust Global Common Root CA 1, O=IdenTrust, C=US
cdp_uri: http://repo.fpki.gov/bridge/fbcag4.crl
aia_uri: http://repo.fpki.gov/bridge/caCertsIssuedTofbcag4.p7c
sia_uri: http://validation.identrust.com/roots/IssuedbyIGCRootCA1.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: February 28, 2024
change_type: CA Certificate Issuance
system: CertiPath Bridge CA
change_description: The CertiPath Bridge CA-G3 issued a renewed cross certificate to the Carillon Federal Services PIV-I CA1 that is valid from 2/20/2024 to 2/28/2025.
contact: support at certipath dot com
ca_certificate_hash: 90f0fb909eff6b6925ea6bb73ae09ca201fbe225
ca_certificate_issuer: OCN=CertiPath Bridge CA - G3, OU=Certification Authorities, O=CertiPath, C=US
ca_certificate_subject: CN=Carillon Federal Services PIV-I CA1, OU=Certification Authorities, O=Carillon Federal Services Inc., C=US
cdp_uri: http://crl.certipath.com/CertiPathBridgeCA-G3.crl
aia_uri: http://aia.certipath.com/CertiPathBridgeCA-G3.p7c
sia_uri: https://pub.carillon.ca/CAcerts/CISCA1.p7
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: http://pub.carillon.ca/CISCA1-ocsp
- notice_date: February 28, 2024
change_type: CA Certificate Issuance
system: CertiPath Bridge CA
change_description: The CertiPath Bridge CA-G3 issued a renewed cross certificate to the Carillon PKI Services G2 Root CA 2 that is valid from 2/20/2024 to 2/28/2025.
contact: support at certipath dot com
ca_certificate_hash: 99c7ce28d37d62bc212f7fcc1b3ea8636b2bd7bc
ca_certificate_issuer: OCN=CertiPath Bridge CA - G3, OU=Certification Authorities, O=CertiPath, C=US
ca_certificate_subject: CN=Carillon Federal Services PIV-I CA1, OU=Certification Authorities, O=Carillon Federal Services Inc, C=US
cdp_uri: http://crl.certipath.com/CertiPathBridgeCA-G3.crl
aia_uri: http://aia.certipath.com/CertiPathBridgeCA-G3.p7c
sia_uri: https://pub.carillon.ca/CAcerts/CISCA1.p7
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: http://pub.carillon.ca/CISCA2-ocsp
- notice_date: February 28, 2024
change_type: CA Certificate Issuance
system: CertiPath Bridge CA
change_description: The CertiPath Bridge CA-G3 issued a renewed cross certificate to the Ministerie van Defensie PKIoverheid Organisatie Persoon CA – G3 that is valid from 2/20/2024 to 2/28/2025.
contact: support at certipath dot com
ca_certificate_hash: 0c9bf55a7612badf1e48f7664b8b72b10d91b8b4
ca_certificate_issuer: OCN=CertiPath Bridge CA - G3, OU=Certification Authorities, O=CertiPath, C=US
ca_certificate_subject: CN= Ministerie van Defensie PKIoverheid Organisatie Persoon CA – G3, 2.5.4.97=NTRNL-27370985, O=Ministerie van Defensie, 2.5.4.97=NTRNL-27370985, C=NL
cdp_uri: http://crl.certipath.com/CertiPathBridgeCA-G3.crl
aia_uri: http://aia.certipath.com/CertiPathBridgeCA-G3.p7c
sia_uri: N/A
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: February 28, 2024
change_type: CA Certificate Issuance
system: CertiPath Bridge CA
change_description: The CertiPath Bridge CA-G3 issued a renewed cross certificate to the Northrop Grumman Corporate Root CA-G2 that is valid from 2/20/2024 to 2/28/2025.
contact: support at certipath dot com
ca_certificate_hash: 558191735579b2512e48ffbdeea7c13866e0cdee
ca_certificate_issuer: OCN=CertiPath Bridge CA - G3, OU=Certification Authorities, O=CertiPath, C=US
ca_certificate_subject: CN= Northrop Grumman Corporate Root CA-G2,OU=Northrop Grumman Information Technology, O=Northrop Grumman Corporation, C=US
cdp_uri: http://crl.certipath.com/CertiPathBridgeCA-G3.crl
aia_uri: http://aia.certipath.com/CertiPathBridgeCA-G3.p7c
sia_uri: http://certdata.northropgrumman.com/certdata/p7c/IssuedByNorthropGrummanCorporateRootCA-G2.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: February 28, 2024
change_type: CA Certificate Issuance
system: CertiPath Bridge CA
change_description: The CertiPath Bridge CA-G3 issued a renewed cross certificate to the Northrop Grumman Corporate Root-384 that is valid from 2/20/2024 to 2/28/2025.
contact: support at certipath dot com
ca_certificate_hash: 6e53dcda07d72a88068b10eca6f2c6953502c3d4
ca_certificate_issuer: OCN=CertiPath Bridge CA - G3, OU=Certification Authorities, O=CertiPath, C=US
ca_certificate_subject: CN= Northrop Grumman Corporate Root-384, OU=Northrop Grumman Enterprise Services, O=Northrop Grumman Corporation, C=US
cdp_uri: http://crl.certipath.com/CertiPathBridgeCA-G3.crl
aia_uri: http://aia.certipath.com/CertiPathBridgeCA-G3.p7c
sia_uri: http://certdata.northropgrumman.com/certdata/p7c/IssuedByNorthropGrummanCorporateRootCA-384.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: February 26, 2024
change_type: CA Certificate Revocation
system: FPKI Trust Infrastructure - Federal Common Policy CA G2
change_description: The Federal Common Policy CA G2 revoked a dated instance of the WidePoint ORC SSP 5 CA in support of the recent certificate modification (certificate serial number 210b3f17db750e616eb25f3f0b4933e5a98c449b)
contact: fpki dash help at gsa dot gov
ca_certificate_hash: 80f4731a60fd5f2eb0468d0629310daa50ad210d
ca_certificate_issuer: CN=Federal Common Policy CA G2, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=WidePoint ORC SSP 5, O=ORC PKI, C=US
cdp_uri: http://repo.fpki.gov/fcpca/fcpcag2.crl
aia_uri: http://repo.fpki.gov/fcpca/caCertsIssuedTofcpcag2.p7c
sia_uri: http://crl-server.orc.com/caCerts/WidePointORCSSP5.p7c
ocsp_uri: N/A
ee_cdp_uri: http://crl-server.orc.com/CRLs/WIDEPOINTORCSSP5.crl
ee_ocsp_uri: http://ssp5.eva.orc.com
- notice_date: February 21, 2024
change_type: CA Certificate Renewal
system: FPKI Trust Infrastructure - Federal Bridge CA G4
change_description: The Federal Bridge CA G4 published the renewed TSCP SHA256 Bridge CA certificate. The validity dates are 2/16/2024 to 10/21/2025.
contact: fpki dash help at gsa dot gov
ca_certificate_hash: 7c30bace50cbdc8a7b64990b40c4f3fb6eee3e8b
ca_certificate_issuer: CN=Federal Common Policy CA G4, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=TSCP SHA256 Bridge CA, OU=CAs, O=TSCP Inc., C=US
cdp_uri: http://repo.fpki.gov/bridge/fbcag4.crl
aia_uri: http://repo.fpki.gov/bridge/caCertsIssuedTofbcag4.p7c
sia_uri: http://tscp-sia.symauth.com/IssuedBy-tscpbcasha256.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: February 16, 2024
change_type: Intent to Issue a CA Certificate
system: CertiPath Bridge CA
change_description: The CertiPath Bridge CA-G3 plans to issue a renewed cross certificate to the Carillon Federal Services PIV-I CA1 on or about February 22.
contact: support at certipath dot com
ca_certificate_hash: TBD
ca_certificate_issuer: OCN=CertiPath Bridge CA - G3, OU=Certification Authorities, O=CertiPath, C=US
ca_certificate_subject: CN=Carillon Federal Services PIV-I CA1, OU=Certification Authorities, O=Carillon Federal Services Inc., C=US
cdp_uri: http://crl.certipath.com/CertiPathBridgeCA-G3.crl
aia_uri: http://aia.certipath.com/CertiPathBridgeCA-G3.p7c
sia_uri: https://pub.carillon.ca/CAcerts/CISCA1.p7
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: http://pub.carillon.ca/CISCA1-ocsp
- notice_date: February 16, 2024
change_type: Intent to Issue a CA Certificate
system: CertiPath Bridge CA
change_description: The CertiPath Bridge CA-G3 plans to issue a renewed cross certificate to the Carillon PKI Services G2 Root CA 2 on or about February 22.
contact: support at certipath dot com
ca_certificate_hash: TBD
ca_certificate_issuer: OCN=CertiPath Bridge CA - G3, OU=Certification Authorities, O=CertiPath, C=US
ca_certificate_subject: CN=Carillon Federal Services PIV-I CA1, OU=Certification Authorities, O=Carillon Federal Services Inc, C=US
cdp_uri: http://crl.certipath.com/CertiPathBridgeCA-G3.crl
aia_uri: http://aia.certipath.com/CertiPathBridgeCA-G3.p7c
sia_uri: https://pub.carillon.ca/CAcerts/CISCA1.p7
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: http://pub.carillon.ca/CISCA2-ocsp
- notice_date: February 16, 2024
change_type: Intent to Issue a CA Certificate
system: CertiPath Bridge CA
change_description: The CertiPath Bridge CA-G3 plans to issue a renewed cross certificate to the Ministerie van Defensie PKIoverheid Organisatie Persoon CA – G3 on or about February 22.
contact: support at certipath dot com
ca_certificate_hash: TBD
ca_certificate_issuer: OCN=CertiPath Bridge CA - G3, OU=Certification Authorities, O=CertiPath, C=US
ca_certificate_subject: CN= Ministerie van Defensie PKIoverheid Organisatie Persoon CA – G3, 2.5.4.97=NTRNL-27370985, O=Ministerie van Defensie, 2.5.4.97=NTRNL-27370985, C=NL
cdp_uri: http://crl.certipath.com/CertiPathBridgeCA-G3.crl
aia_uri: http://aia.certipath.com/CertiPathBridgeCA-G3.p7c
sia_uri: N/A
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: February 16, 2024
change_type: Intent to Issue a CA Certificate
system: CertiPath Bridge CA
change_description: The CertiPath Bridge CA-G3 plans to issue a renewed cross certificate to the Northrop Grumman Corporate Root CA-G2 on or about February 22.
contact: support at certipath dot com
ca_certificate_hash: TBD
ca_certificate_issuer: OCN=CertiPath Bridge CA - G3, OU=Certification Authorities, O=CertiPath, C=US
ca_certificate_subject: CN= Northrop Grumman Corporate Root CA-G2,OU=Northrop Grumman Information Technology, O=Northrop Grumman Corporation, C=US
cdp_uri: http://crl.certipath.com/CertiPathBridgeCA-G3.crl
aia_uri: http://aia.certipath.com/CertiPathBridgeCA-G3.p7c
sia_uri: http://certdata.northropgrumman.com/certdata/p7c/IssuedByNorthropGrummanCorporateRootCA-G2.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: February 16, 2024
change_type: Intent to Issue a CA Certificate
system: CertiPath Bridge CA
change_description: The CertiPath Bridge CA-G3 plans to issue a renewed cross certificate to the Northrop Grumman Corporate Root-384 on or about February 22.
contact: support at certipath dot com
ca_certificate_hash: TBD
ca_certificate_issuer: OCN=CertiPath Bridge CA - G3, OU=Certification Authorities, O=CertiPath, C=US
ca_certificate_subject: CN= Northrop Grumman Corporate Root-384, OU=Northrop Grumman Enterprise Services, O=Northrop Grumman Corporation, C=US
cdp_uri: http://crl.certipath.com/CertiPathBridgeCA-G3.crl
aia_uri: http://aia.certipath.com/CertiPathBridgeCA-G3.p7c
sia_uri: http://certdata.northropgrumman.com/certdata/p7c/IssuedByNorthropGrummanCorporateRootCA-384.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: February 1, 2024
change_type: Intent to Renew a CA Certificate
system: FPKI Trust Infrastructure - Federal Bridge CA G4
change_description: The Federal Bridge CA G4 intends to perform a certificate renewal to TSCP SHA256 Bridge CA between 02/16/2024 and 02/22/2024. The current certificate is expiring 2/23/2024.
contact: fpki dash help at gsa dot gov
ca_certificate_hash: dd68894ac1ae380449190487a5ff24f9fdbcd82f
ca_certificate_issuer: CN=Federal Common Policy CA G4, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=TSCP SHA256 Bridge CA, OU=CAs, O=TSCP Inc., C=US
cdp_uri: http://repo.fpki.gov/bridge/fbcag4.crl
aia_uri: http://repo.fpki.gov/bridge/caCertsIssuedTofbcag4.p7c
sia_uri: http://tscp-sia.symauth.com/IssuedBy-tscpbcasha256.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: February 1, 2024
change_type: Intent to Revoke a CA Certificate
system: FPKI Trust Infrastructure - Federal Common Policy CA G2
change_description: The Federal Common Policy CA G2 intends to revoke a dated instance of the WidePoint ORC SSP 5 CA in support of the recent certificate modification (certificate serial number 210b3f17db750e616eb25f3f0b4933e5a98c449b)
contact: fpki dash help at gsa dot gov
ca_certificate_hash: 80f4731a60fd5f2eb0468d0629310daa50ad210d
ca_certificate_issuer: CN=Federal Common Policy CA G2, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=WidePoint ORC SSP 5, O=ORC PKI, C=US
cdp_uri: http://repo.fpki.gov/fcpca/fcpcag2.crl
aia_uri: http://repo.fpki.gov/fcpca/caCertsIssuedTofcpcag2.p7c
sia_uri: http://crl-server.orc.com/caCerts/WidePointORCSSP5.p7c
ocsp_uri: N/A
ee_cdp_uri: http://crl-server.orc.com/CRLs/WIDEPOINTORCSSP5.crl
ee_ocsp_uri: http://ssp5.eva.orc.com
- notice_date: February 1, 2024
change_type: CA Certificate Issuance
system: FPKI Trust Infrastructure - Federal Common Policy CA G2
change_description: The Federal Common Policy CA G2 issued a modified to WidePoint ORC SSP 5 which includes Derived PIV policies
contact: fpki dash help at gsa dot gov
ca_certificate_hash: N/A
ca_certificate_issuer: CN=Federal Common Policy CA G2, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=WidePoint ORC SSP 5, O=ORC PKI, C=US
cdp_uri: http://repo.fpki.gov/fcpca/fcpcag2.crl
aia_uri: http://repo.fpki.gov/fcpca/caCertsIssuedTofcpcag2.p7c
sia_uri: http://crl-server.orc.com/caCerts/WidePointORCSSP5.p7c
ocsp_uri: N/A
ee_cdp_uri: http://crl-server.orc.com/CRLs/WIDEPOINTORCSSP5.crl
ee_ocsp_uri: http://ssp5.eva.orc.com
- notice_date: February 1, 2024
change_type: Intent to Issue a CA Certificate
system: FPKI Trust Infrastructure - Federal Common Policy CA G2
change_description: The Federal Common Policy CA G2 intends to issue a modified certificate for PIV Derived Policies to WidePoint ORC SSP 5 between 2/1/2024 and 2/8/2024. Once the new certificate is accepted and published the previous certificate will be revoked.
contact: fpki dash help at gsa dot gov
ca_certificate_hash: N/A
ca_certificate_issuer: CN=Federal Common Policy CA G2, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=WidePoint ORC SSP 5, O=ORC PKI, C=US
cdp_uri: http://repo.fpki.gov/fcpca/fcpcag2.crl
aia_uri: http://repo.fpki.gov/fcpca/caCertsIssuedTofcpcag2.p7c
sia_uri: http://crl-server.orc.com/caCerts/WidePointORCSSP5.p7c
ocsp_uri: N/A
ee_cdp_uri: http://crl-server.orc.com/CRLs/WIDEPOINTORCSSP5.crl
ee_ocsp_uri: http://ssp5.eva.orc.com
- notice_date: December 14, 2023
change_type: System Outage
system: WidePoint Non-Federal Issuer
change_description: Automated CRL publication was delayed for the WidePoint ORC NFI CA 4, which caused a short period where the associated public CRL had expired. WidePoint had manually published a current CRL within 2 hours of discovery and has subsequently corrected their automated CRL publication processes.
contact: WCSC-PKIPolicy at widepoint dot com
ca_certificate_hash: 5a95aea990a7aec492134a5b437cf3324f260793
ca_certificate_issuer: CN=WidePoint NFI Root 2, OU=Certification Authorities, O=WidePoint, C=US
ca_certificate_subject: CN=WidePoint ORC NFI 4, OU=Certification Authorities, O=WidePoint, C=US
cdp_uri: http://crl-server.orc.com/CRLs/WIDEPOINTNFIROOT2.crl
aia_uri: http://crl-server.orc.com/caCerts/WIDEPOINTNFIROOT2.p7c
sia_uri: N/A
ocsp_uri: N/A
ee_cdp_uri: http://crl.xca.xpki.com/CRLs/XTec_PIVI_CA1_1.crl
ee_ocsp_uri: N/A
- notice_date: December 5, 2023
change_type: CA Certificate Issuance
system: DirectTrust Identity Bridge CA
change_description: DirectTrust issued a cross certificate from the bridge to the FBCA. Valid from 10/17/2023 to 10/31/2026.
contact: admin at DirectTrust dot org
ca_certificate_hash: 1623a303cd6d5c61cf049f1b65d6aae2f1e8e19f
ca_certificate_issuer: CN = DirectTrust Identity Bridge CA, OU = Certification Authorities, O = DirectTrust.org, inc., C = US
ca_certificate_subject: CN = Federal Bridge CA G4, OU = FPKI, O = U.S. Government, C = US
cdp_uri: http://crl.makeidentitysafe.com/sibca.crl
aia_uri: http://aia.makeidentitysafe.com/sibca.p7c
sia_uri: N/A
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: November 27, 2023
change_type: Rekey CA Certificate Issuance
system: WidePoint Non-Federal Issuer
change_description: WidePoint NFI Root 2 intends to rekey the WidePoint ORC NFI 4 CA on or after December 8, 2023.
contact: pkipolicy at orc dot com
ca_certificate_hash: 0471dae1836979a68d973b6ca0b5fe44b0bae362
ca_certificate_issuer: CN=WidePoint NFI Root 2, OU=Certification Authorities, O=WidePoint, C=US
ca_certificate_subject: CN=WidePoint ORC NFI 4, OU=Certification Authorities, O=WidePoint, C=US
cdp_uri: http://crl-server.orc.com/CRLs/WIDEPOINTNFIROOT2.crl
aia_uri: http://crl-server.orc.com/caCerts/WIDEPOINTNFIROOT2.p7c
sia_uri: N/A
ocsp_uri: N/A
ee_cdp_uri: http://crl.xca.xpki.com/CRLs/XTec_PIVI_CA1_2.crl
ee_ocsp_uri: N/A
- notice_date: November 20, 2023
change_type: System Outage
system: WidePoint Non-Federal Issuer
change_description: Due to a hardware failure, automated CRL publication was delayed for the WidePoint ORC NFI CA 4, which caused a short period where the associated public CRL had expired. WidePoint had manually published a current CRL within 4 hours of discovery and has subsequently corrected their automated CRL publication processes.
contact: WCSC-PKIPolicy at widepoint dot com
ca_certificate_hash: 5a95aea990a7aec492134a5b437cf3324f260793
ca_certificate_issuer: CN=WidePoint NFI Root 2, OU=Certification Authorities, O=WidePoint, C=US
ca_certificate_subject: CN=WidePoint ORC NFI 4, OU=Certification Authorities, O=WidePoint, C=US
cdp_uri: http://crl-server.orc.com/CRLs/WIDEPOINTNFIROOT2.crl
aia_uri: http://crl-server.orc.com/caCerts/WIDEPOINTNFIROOT2.p7c
sia_uri: N/A
ocsp_uri: N/A
ee_cdp_uri: http://crl.xca.xpki.com/CRLs/XTec_PIVI_CA1_1.crl
ee_ocsp_uri: N/A
- notice_date: November 14, 2023
change_type: Intent to Rekey CA Certificate
system: WidePoint Non-Federal Issuer
change_description: WidePoint NFI Root 2 intends to rekey the WidePoint ORC NFI 4 CA on or after December 8, 2023.
contact: pkipolicy at orc dot com
ca_certificate_hash: TBD
ca_certificate_issuer: CN=WidePoint NFI Root 2, OU=Certification Authorities, O=WidePoint, C=US
ca_certificate_subject: CN=WidePoint ORC NFI 4, OU=Certification Authorities, O=WidePoint, C=US
cdp_uri: http://crl-server.orc.com/CRLs/WIDEPOINTNFIROOT2.crl
aia_uri: http://crl-server.orc.com/caCerts/WIDEPOINTNFIROOT2.p7c
sia_uri: N/A
ocsp_uri: N/A
ee_cdp_uri: http://crl.xca.xpki.com/CRLs/XTec_PIVI_CA1_2.crl
ee_ocsp_uri: N/A
- notice_date: November 13, 2023
change_type: CA Certificate Issuance
system: FPKI Trust Infrastructure - Federal Common Policy CA G2
change_description: The Federal Common Policy CA G2 issued a new cross certificate to the U.S. Department of State AD Root CA valid from 11/8/2023 - 11/8/2026.
contact: fpki dash help at gsa dot gov
ca_certificate_hash: b47df20b16966f65b0e4859d426d05c452b76bd6
ca_certificate_issuer: CN=Federal Common Policy CA G2, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=U.S. Department of State AD Root CA, CN=AIA, CN=Public Key Services, CN=Services, CN=Configuration, DC=state, DC=sbu
cdp_uri: http://repo.fpki.gov/fcpca/fcpcag2.crl
aia_uri: http://repo.fpki.gov/fcpca/caCertsIssuedTofcpcag2.p7c
sia_uri: http://crls.pki.state.gov/SIA/CertsIssuedByADRootCA.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: October 30, 2023
change_type: CA Certificate Revocation
system: FPKI Trust Infrastructure - Federal Bridge CA G4
change_description: The Federal Bridge CA G4 intends to revoke the original cross certificate to the USPTO_INTR_CA1 that was issued on 11/9/2022 between 11/13/2023 and 11/17/2023.
contact: fpki dash help at gsa dot gov
ca_certificate_hash: e35da05374246a6d0a892f5eec31f74cdbd794b0
ca_certificate_issuer: CN=Federal Bridge CA G4, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=USPTO_INTR_CA1, CN=AIA, CN=Public Key Services, CN=Services, CN=Configuration, DC=uspto, DC=gov
cdp_uri: http://repo.fpki.gov/bridge/fbcag4.crl
aia_uri: http://repo.fpki.gov/bridge/caCertsIssuedTofbcag4.p7c
sia_uri: http://ipki.uspto.gov/IPKI/Certs/IPKICACerts.p7c
ocsp_uri: N/A
ee_cdp_uri: http://ipki.uspto.gov/IPKI/CRLs/CombinedCRL4.crl
ee_ocsp_uri: N/A
- notice_date: October 30, 2023
change_type: CA Certificate Issuance
system: DirectTrust Identity Bridge CA
change_description: DirectTrust issued a cross certificate from the bridge to the Trans Sped Root CA on October 30, 2023.
contact: Kyle dot Neuman at DirectTrust dot org
ca_certificate_hash: d0575156c2333a2493890b3aee7900fc6ff8620f
ca_certificate_issuer: CN = DirectTrust Identity Bridge CA, OU = Certification Authorities, O = DirectTrust.org, inc., C = US
ca_certificate_subject: CN = Trans Sped Root CA G3, OU = Trans Sped Trust Services, O = Trans Sped S.A./organizationIdentifier = VATRO-12458924, C = RO
cdp_uri: http://crl.makeidentitysafe.com/sibca.crl
aia_uri: http://aia.makeidentitysafe.com/sibca.p7c
sia_uri: N/A
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: http://ocsp.transsped.ro/
- notice_date: October 26, 2023
change_type: CA Certificate Issuance
system: FPKI Trust Infrastructure - Federal Bridge CA G4
change_description: The Federal Bridge CA G4 issued a new cross certificate to the DirectTrust Identity Bridge CA
contact: fpki dash help at gsa dot gov
ca_certificate_hash: ddd7246c86b2e0a3ac2fc7a7dbb7430b935eba2f
ca_certificate_issuer: CN=Federal Bridge CA G4, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=DirectTrust Identity Bridge CA, OU=Certification Authorities, O=DirectTrust.org, inc., C=US
cdp_uri: http://repo.fpki.gov/bridge/fbcag4.crl
aia_uri: http://repo.fpki.gov/bridge/caCertsIssuedTofbcag4.p7c
sia_uri: http://ipki.uspto.gov/IPKI/Certs/IPKICACerts.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: October 25, 2023
change_type: Intent to Issue a CA Certificate
system: FPKI Trust Infrastructure - Federal Common Policy CA G2
change_description: The Federal Common Policy CA G2 intends to issue a new cross certificate to the U.S. Department of State AD Root CA between 11/08/2023 and 11/15/2023
contact: fpki dash help at gsa dot gov
ca_certificate_hash: N/A
ca_certificate_issuer: CN=Federal Common Policy CA G2, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=U.S. Department of State AD Root CA, CN=AIA, CN=Public Key Services, CN=Services, CN=Configuration, DC=state, DC=sbu
cdp_uri: http://repo.fpki.gov/fcpca/fcpcag2.crl
aia_uri: http://repo.fpki.gov/fcpca/caCertsIssuedTofcpcag2.p7c
sia_uri: http://crls.pki.state.gov/SIA/CertsIssuedByADRootCA.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: October 20, 2023
change_type: CA Certificate Issuance
system: FPKI Trust Infrastructure - Federal Bridge CA G4
change_description: The Federal Bridge CA G4 issued a new cross certificate to the USPTO_INTR_CA1 with validity from 10/19/2023 to 10/19/2026
contact: fpki dash help at gsa dot gov
ca_certificate_hash: 02ecec9eb7229055c57caeaade6f1ae056fb4327
ca_certificate_issuer: CN=Federal Bridge CA G4, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=USPTO_INTR_CA1, CN=AIA, CN=Public Key Services, CN=Services, CN=Configuration, DC=uspto, DC=gov
cdp_uri: http://repo.fpki.gov/bridge/fbcag4.crl
aia_uri: http://repo.fpki.gov/bridge/caCertsIssuedTofbcag4.p7c
sia_uri: http://ipki.uspto.gov/IPKI/Certs/IPKICACerts.p7c
ocsp_uri: N/A
ee_cdp_uri: http://ipki.uspto.gov/IPKI/CRLs/CombinedCRL4.crl
ee_ocsp_uri: N/A
- notice_date: October 20, 2023
change_type: CA Certificate Issuance
system: IdenTrust Global Common Root CA 1
change_description: Issued new CA certificate to Advanced Health Systems Inc, valid from 10/12/2023 to 10/8/2033
contact: product at IdenTrust dot com
ca_certificate_hash: c6fa3d4cdf28e118b9bc2790734e9cf257279c1f
ca_certificate_issuer: CN = IdenTrust Global Common Root CA 1, O = IdenTrust, C = US
ca_certificate_subject: CN = Advanced Health Systems Inc Direct CA 2, OU = IdenTrust Global Common, O = IdenTrust, S = Mississippi, C = US
cdp_uri: http://validation.identrust.com/crl/igcrootca1.crl
aia_uri: http://validation.identrust.com/roots/igcrootca1.p7c
sia_uri: N/A
ocsp_uri: http://igc.ocsp.identrust.com
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: October 6, 2023
change_type: Intent to Issue CA Certificate
system: FPKI Trust Infrastructure - Federal Bridge CA G4
change_description: The Federal Bridge CA G4 intends to issue a new cross certificate to the DirectTrust Identity Bridge CA between 10/23/2023 and 10/30/2023
contact: fpki dash help at gsa dot gov
ca_certificate_hash: N/A
ca_certificate_issuer: CN=Federal Bridge CA G4, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=DirectTrust Identity Bridge CA, OU=Certification Authorities, O=DirectTrust.org, inc., C=US
cdp_uri: http://repo.fpki.gov/bridge/fbcag4.crl
aia_uri: http://repo.fpki.gov/bridge/caCertsIssuedTofbcag4.p7c
sia_uri: http://aia.makeidentitysafe.com/issuedby-sibca.p7c
ocsp_uri: N/A
ee_cdp_uri: N/A
ee_ocsp_uri: N/A
- notice_date: October 6, 2023
change_type: Intent to Issue CA Certificate
system: FPKI Trust Infrastructure - Federal Bridge CA G4
change_description: The Federal Bridge CA G4 intends to issue a new cross certificate to the USPTO_INTR_CA1 between 10/19/2023 and 10/26/2023
contact: fpki dash help at gsa dot gov
ca_certificate_hash: N/A
ca_certificate_issuer: CN=Federal Bridge CA G4, OU=FPKI, O=U.S. Government, C=US
ca_certificate_subject: CN=USPTO_INTR_CA1, CN=AIA, CN=Public Key Services, CN=Services, CN=Configuration, DC=uspto, DC=gov
cdp_uri: http://repo.fpki.gov/bridge/fbcag4.crl
aia_uri: http://repo.fpki.gov/bridge/caCertsIssuedTofbcag4.p7c
sia_uri: http://ipki.uspto.gov/IPKI/Certs/IPKICACerts.p7c
ocsp_uri: N/A
ee_cdp_uri: http://ipki.uspto.gov/IPKI/CRLs/CombinedCRL4.crl
ee_ocsp_uri: N/A
- notice_date: August 29, 2023
change_type: CA Certificate Issuance
system: TSCP SHA256 Bridge CA
change_description: The TSCP Bridge CA issued a cross-certificate to the DocuSign Root CA.
contact: info at tscp dot org
ca_certificate_hash: 1f237153e9baf737ada108d20684c79467709c59
ca_certificate_issuer: CN=TSCP SHA256 Bridge CA, OU=CAs, O=TSCP Inc., C=US
ca_certificate_subject: CN=DocuSign Root CA, OU=TSCP, O=DocuSign Inc., C=US
cdp_uri: http://tscp-crl.symauth.com/tscpbcasha256.crl
aia_uri: http://tscp-aia.symauth.com/IssuedTo-tscpbcasha256.p7c
sia_uri: N/A
ocsp_uri: N/A
ee_cdp_uri: http://crl.dsf.docusign.net/DocuSignCAforTSCPG1.crl
ee_ocsp_uri: N/A
- notice_date: August 29, 2023
change_type: CA Certificate Issuance
system: TSCP SHA256 Bridge CA
change_description: The TSCP Bridge CA issued a cross-certificate to Carillon Federal Services PIV-I CA2.
contact: info at tscp dot org
ca_certificate_hash: 5e9af6c211fc6a6be1719c7765d4d6b386322b47
ca_certificate_issuer: CN=TSCP SHA256 Bridge CA, OU=CAs, O=TSCP Inc., C=US
ca_certificate_subject: CN=Carillon Federal Services PIV-I CA2, OU=Certification Authorities, O=Carillon Federal Services Inc., C=US
cdp_uri: http://tscp-crl.symauth.com/tscpbcasha256.crl