-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathfpkidocs.yml
1095 lines (961 loc) · 42.5 KB
/
fpkidocs.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
# list of archived fpki documents
# numberProposal - Version number of the document or number of the change proposal
# date = date on the document
# Status Post - Post it to the website;
# Status Archive - Document is three years old or no longer valid. The document is actually retained in this repository, but not posted to the website.
# Remove - Date to change status from post to archive. This could be three years for change proposals or three years from when a document was replaced.
#
# Used on: https://www.idmanagement.gov/fpki/
- category: Common Profile
numberProposal: 2.2
name: Common Policy X.509 Certificate and Certificate Revocation List (CRL) Profiles v2.2
date: 9/30/2022
url: /docs/archived/fpki-common-profile-22.pdf
status: post
remove: 10/25/2027
- category: Common Certificate Policy
numberProposal: 2.8
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v2.8
date: 10/25/2024
url: /docs/archived/fpki-x509-cert-policy-common-28.pdf
status: post
remove: 10/25/2027
- category: Common Change Proposal
numberProposal: 2024-06
name: Proposal 2024-06 | Modify role-based certificate requirements for delegated digital signature uses
description: Add requirements around role-based certificates that can be used to support delegated digital signatures that convey the authority of a given role to specific delegates.
date: 10/16/2024
url: /docs/archived/fpki-common-cp-2406.pdf
status: post
remove: 10/16/2027
- category: Common Change Proposal
numberProposal: 2024-07
name: Proposal 2024-07 | Trusted Agent and Key Recovery Role/Responsibility Clarifications
description: Clarify the description of the trusted agent role in order to ensure that it is not confused with a standard trusted roles and thus does not require an equivalent background investigation. Additionally, clarify seemingly conflicting policy language regarding Key Recovery Officials (KROs) and Third Party Key Recovery Requestors to include their responsibilities.
date: 10/25/2024
url: /docs/archived/fpki-common-cp-2407.pdf
status: post
remove: 10/25/2027
- category: Common Change Proposal
numberProposal: 2024-08
name: Proposal 2024-08 | Clarifications on Private Key Recovery Storage and Private Key Activation
description: Clarify the key storage requirements for Third-Party recovery of PIV key management keys that were originally issued to subscribers asserting common-hardware policies. Additionally, clarify requirements for securely recording private key activation data.
date: 10/25/2024
url: /docs/archived/fpki-common-cp-2408.pdf
status: post
remove: 10/25/2027
- category: Federal Bridge Certificate Policy
numberProposal: 3.5
name: X.509 Certificate Policy For The Federal Bridge CA (FBCA) v3.5
date: 10/25/2024
url: /docs/archived/fpki-x509-cert-policy-fbca-35.pdf
status: post
remove: 10/25/2027
- category: Federal Bridge Change Proposal
numberProposal: 2024-09
name: Proposal 2024-09 | Trusted Agent and Key Recovery Role/Responsibility Clarifications
description: Clarify the description of the trusted agent role in order to ensure that it is not confused with a standard trusted roles and thus does not require an equivalent background investigation. Additionally, clarify seemingly conflicting policy language regarding Key Recovery Officials (KROs) and Third Party Key Recovery Requestors to include their responsibilities.
date: 10/25/2024
url: /docs/archived/fpki-fbca-cp-2409.pdf
status: post
remove: 10/25/2027
- category: Federal Bridge Change Proposal
numberProposal: 2024-10
name: Proposal 2024-10 | Clarifications on Private Key Recovery Storage and Private Key Activation
description: Clarify the key storage requirements for Third-Party recovery of PIV key management keys that were originally issued to subscribers asserting common-hardware policies. Additionally, clarify requirements for securely recording private key activation data.
date: 10/25/2024
url: /docs/archived/fpki-fbca-cp-2410.pdf
status: post
remove: 10/25/2027
- category: FPKIMA Audit Letter
numberProposal: 2023
name: FPKIMA Audit Letter 2023
date: 8/20/2024
url: /docs/archived/fpki-fpkima-audit-letter-2023.pdf
status: post
remove: 8/20/2027
- category: Common Certificate Policy
numberProposal: 2.7
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v2.7
date: 02/02/2024
url: /docs/archived/fpki-x509-cert-policy-common-27.pdf
status: post
remove: 06/08/2027
- category: Common Change Proposal
numberProposal: 2024-05
name: Proposal 2024-05 | Remote Workstation Clarification
description: Clarify the definition of a “remote workstation used to administer the CA” in order to more clearly delineate parity with CA security controls.
date: 05/08/2024
url: /docs/archived/fpki-common-cp-2405.pdf
status: post
remove: 06/08/2027
- category: Federal Bridge Certificate Policy
numberProposal: 3.4
name: X.509 Certificate Policy For The Federal Bridge CA (FBCA) v3.4
date: 02/02/2024
url: /docs/archived/fpki-x509-cert-policy-fbca-34.pdf
status: post
remove: 06/08/2027
- category: Federal Bridge Change Proposal
numberProposal: 2024-04
name: Proposal 2024-04 | Remote Workstation Clarification
description: Clarify the definition of a “remote workstation used to administer the CA” in order to more clearly delineate parity with CA security controls.
date: 05/08/2024
url: /docs/archived/fpki-fbca-cp-2404.pdf
status: post
remove: 06/08/2027
- category: Common Certificate Policy
numberProposal: 2.6
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v2.6
date: 11/03/2023
url: /docs/archived/fpki-x509-cert-policy-common-26.pdf
status: post
remove: 02/23/2027
- category: Common Change Proposal
numberProposal: 2024-02
name: Proposal 2024-02 | Remote Workstation Clarification
description: Clarify the definition of a “remote workstation used to administer the CA” in order to accommodate current secure practices.
date: 02/02/2024
url: /docs/archived/fpki-common-cp-2402.pdf
status: post
remove: 02/23/2027
- category: Common Change Proposal
numberProposal: 2024-03
name: Proposal 2024-03 | Certificate Policy Clarifications
description: Clarify the language in CP based on 2023 FPKI Annual PKI Compliance Audit
date: 02/02/2024
url: /docs/archived/fpki-common-cp-2403.pdf
status: post
remove: 02/23/2027
- category: Federal Bridge Certificate Policy
numberProposal: 3.3
name: X.509 Certificate Policy For The Federal Bridge CA (FBCA) v3.3
date: 11/03/2023
url: /docs/archived/fpki-x509-cert-policy-fbca-33.pdf
status: post
remove: 02/23/2027
- category: Federal Bridge Change Proposal
numberProposal: 2024-01
name: Proposal 2024-01 | Remote Workstation Clarification
description: Clarify the definition of a “remote workstation used to administer the CA” in order to accommodate current secure practices.
date: 02/02/2024
url: /docs/archived/fpki-fbca-cp-2401.pdf
status: post
remove: 02/23/2027
- category: Federal Public Key Infrastructure Key Recovery Policy
numberProposal: 1.0
name: FPKI Key Recovery Policy
description: The FPKI Key Recovery Policy (KRP) (Subsumed 2021) supplements the FPKI Certificate Policies and describes the procedural and technical security controls needed to operate a Key Recovery System (KRS) securely, in accordance with FPKIPA requirements
date: 10/06/2017
url: /docs/archived/fpki-key-recovery-policy.pdf
status: post
remove: 02/05/2050
- category: FPKI Trust Infrastructure Certificate Practice Statement
numberProposal: 6.3
name: X.509 Certificate Practice Statement For the FPKI Trust Infrastructure v6.3
date: 5/22/2025
url: /docs/archived/fpki-fpkima-cps-v63.pdf
status: post
remove: 12/7/2026
- category: Federal Bridge Certificate Policy
numberProposal: 3.2
name: X.509 Certificate Policy For The Federal Bridge CA (FBCA) v3.2
date: 07/06/2023
url: /docs/archived/fpki-x509-cert-policy-fbca-32.pdf
status: post
remove: 11/29/2026
- category: Federal Bridge Change Proposal
numberProposal: 2023-05
name: Proposal 2023-05 | Certificate Modifications and Restorations
description: Clarify the requirements around certificate modifications, define requirements for certificate restoration, align audit and archive terminology for certificate status changes, and clarify the relationship between the CMS and the PIV-I content signer.
date: 11/29/2023
url: /docs/archived/fpki-fbca-cp-2305.pdf
status: post
remove: 11/29/2026
- category: Common Certificate Policy
numberProposal: 2.5
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v2.5
date: 07/06/2023
url: /docs/archived/fpki-x509-cert-policy-common-25.pdf
status: post
remove: 11/29/2026
- category: Common Change Proposal
numberProposal: 2023-06
name: Proposal 2023-06 | Certificate Modifications and Restorations
description: Clarify the requirements around certificate modifications, define requirements for certificate restoration, align audit and archive terminology for certificate status changes, and to generalize two document references.
date: 11/29/2023
url: /docs/archived/fpki-common-cp-2306.pdf
status: post
remove: 11/29/2026
- category: FPKIMA Audit Letter
numberProposal: 2022
name: FPKIMA Audit Letter 2022
date: 9/12/2022
url: /docs/archived/fpki-fpkima-audit-letter-2022.pdf
status: post
remove: 11/9/2026
- category: FPKI Trust Infrastructure Certificate Practice Statement
numberProposal: 6.2
name: X.509 Certificate Practice Statement For the FPKI Trust Infrastructure v6.2
date: 12/14/2022
url: /docs/archived/fpki-fpkima-cps-v62.pdf
status: post
remove: 7/31/2026
- category: Federal Bridge Certificate Policy
numberProposal: 3.1
name: X.509 Certificate Policy For The Federal Bridge CA (FBCA) v3.1
date: 08/01/2023
url: /docs/archived/fpki-x509-cert-policy-fbca-31.pdf
status: post
remove: 08/01/2026
- category: Federal Bridge Change Proposal
numberProposal: 2023-03
name: Proposal 2023-03 | Appointment of Trusted Roles and updates in Section 6.3.2
description: Clarify the requirements for the appointment of Trusted Roles, increase Root CA certificate private key and certificate lifetimes, and remove incorrect restriction on private keys associated with cross-certificates.
date: 08/01/2023
url: /docs/archived/fpki-fbca-cp-2303.pdf
status: post
remove: 08/01/2026
- category: Common Certificate Policy
numberProposal: 2.4
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v2.4
date: 08/01/2023
url: /docs/archived/fpki-x509-cert-policy-common-24.pdf
status: post
remove: 08/01/2026
- category: Common Change Proposal
numberProposal: 2023-04
name: Proposal 2023-04 | Appointment of Trusted Roles
description: Clarify the requirements for the appointment of Trusted Roles.
date: 08/01/2023
url: /docs/archived/fpki-common-cp-2304.pdf
status: post
remove: 08/01/2026
- category: Federal Bridge Certificate Policy
numberProposal: 3.0
name: X.509 Certificate Policy For The Federal Bridge CA (FBCA) v3.0
date: 04/17/2023
url: /docs/archived/fpki-x509-cert-policy-fbca-30.pdf
status: post
remove: 04/17/2026
- category: Federal Bridge Change Proposal
numberProposal: 2023-01
name: Proposal 2023-01 | Updates to the Federal Bridge Certification Authority (FBCA) Certificate Policy based on comments received by the CPWG
description: This proposal incorporates changes to multiple sections of the FBCA CP based on the comments received during voting period of the most recent rewrite (Change Proposal 2022-04).
date: 04/17/2023
url: /docs/archived/fpki-fbca-cp-2301.pdf
status: post
remove: 04/17/2026
- category: Common Certificate Policy
numberProposal: 2.3
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v2.3
date: 04/17/2023
url: /docs/archived/fpki-x509-cert-policy-common-23.pdf
status: post
remove: 04/17/2026
- category: Common Change Proposal
numberProposal: 2023-02
name: Proposal 2023-02 | Updates Common Policy based on general comments received by the CPWG
description: This proposal incorporates changes to multiple sections of Common Policy based on the comments received during voting period of the most recent rewrite of the FBCA CP (change proposal 2022-04).
date: 4/17/2023
url: /docs/archived/fpki-common-cp-2302.pdf
status: post
remove: 04/17/2026
- category: FPKI Trust Infrastructure Certificate Practice Statement
numberProposal: 6.1
name: X.509 Certificate Practice Statement For the FPKI Trust Infrastructure v6.1
date: 03/15/2022
url: /docs/archived/fpki-fpkima-cps-v61.pdf
status: post
remove: 12/21/2025
- category: Federal Bridge Profile
numberProposal: 1.9
name: Federal Public Key Infrastructure (PKI) X.509 Certificate and CRL Extensions Profile v1.9
date: 05/10/2020
url: /docs/archived/fpki-fbca-profiles-19.pdf
status: post
remove: 11/04/2025
- category: PIV-I Profile
numberProposal: 1.3
name: X.509 PIV-I Certificate and Certificate Revocation List Profiles v1.3
date: 05/10/2020
url: /docs/archived/fpki-profiles-pivi-13.pdf
status: post
remove: 11/04/2025
- category: Federal Bridge Certificate Policy
numberProposal: 2.36
name: X.509 Certificate Policy For The Federal Bridge CA (FBCA) v2.36
date: 05/6/2022
url: /docs/archived/fpki-x509-cert-policy-fbca-236.pdf
status: post
remove: 11/04/2025
- category: Federal Bridge Change Proposal
numberProposal: 2022-04
name: Proposal 2022-04 | Consolidated Update to the Federal Bridge Certification Authority Certificate Policy and Associated Profiles
description: Consolidates CPWG policy recommendations dating back to 2018 and aligns to Common Policy where applicable. It also cleans-up outdated references and requirements, clarifies existing requirements, aligns policy with observed agency practices (e.g., certificate naming), and improves readability.
date: 05/06/2022
url: /docs/archived/fpki-fbca-cp-2204.pdf
status: post
remove: 11/04/2025
- category: Common Profile
numberProposal: 2.1
name: Common Policy X.509 Certificate and Certificate Revocation List (CRL) Profiles v2.1
date: 2/1/2021
url: /docs/archived/fpki-common-profile-21.pdf
status: post
remove: 10/17/2025
- category: Common Change Proposal
numberProposal: 2022-05
name: Proposal 2022-05 | Consolidated Changes to the Common Policy Certificate and CRL Profiles
description: This proposal incorporates multiple change to the Common Policy Certificate and CRL Profiles for the purpose of alignment to RFC 5280, FIPS 201-3, increased interoperability, and to account for known and acceptable certificate practices.
date: 9/13/2022
url: /docs/archived/fpki-common-cp-2205.pdf
status: post
remove: "*10/17/2025"
- category: FPKIMA Audit Letter
numberProposal: 2021
name: FPKIMA Audit Letter 2021
date: 10/1/2021
url: /docs/archived/fpki-fpkima-audit-letter-2021.pdf
status: post
remove: 10/12/2025
- category: Common Certificate Policy
numberProposal: 2.2
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v2.2
date: 12/1/2021
url: /docs/archived/fpki-x509-cert-policy-common-22.pdf
status: post
remove: 10/1/2025
- category: Common Change Proposal
numberProposal: 2022-01A
name: Proposal 2022-01A | Updates to Archive Retention Period Section of Common Policy
description: Lends specificity to the archive record retention periods, assisting RAs, or other archiving elements, to understand what artifacts need to be archived, and for how long in certain scenarios.
date: 8/26/2022
url: /docs/archived/fpki-common-cp-2201A.pdf
status: post
remove: 10/1/2025
- category: Federal Bridge Certificate Policy
numberProposal: 2.35
name: X.509 Certificate Policy For The Federal Bridge CA (FBCA) v2.35
date: 05/15/2019
url: /docs/archived/fpki-x509-cert-policy-fbca-235.pdf
status: post
remove: 06/17/2025
- category: Federal Bridge Change Proposal
numberProposal: 2022-02
name: Proposal 2022-02 | PIV-I Topography Requirements in the Federal Bridge CA Certificate Policy
description: Allow Federally issued PIV-I credentials to leverage the same cardstock used for PIV issuance.
date: 05/06/2022
url: /docs/archived/fpki-fbca-cp-2202.pdf
status: post
remove: 05/06/2025
- category: Supplementary Guidance
numberProposal: 2.0.1
name: Personal Identity Verification Interoperability for Issuers v2.0.1
date: 07/27/2017
url: /docs/archived/fpki-pivi-for-issuers.pdf
status: post
remove: 05/01/2025
- category: FPKI Trust Infrastructure Certificate Practice Statement
numberProposal: 6.0
name: X.509 Certificate Practice Statement For the FPKI Trust Infrastructure v6.0
date: 06/28/2021
url: /docs/archived/fpki-fpkima-cps-v60.pdf
status: post
remove: 05/14/2025
- category: Common Certificate Policy
numberProposal: 2.1
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v2.1
date: 05/18/2021
url: /docs/archived/fpki-x509-cert-policy-common-21.pdf
status: post
remove: 12/15/2024
- category: Common Change Proposal
numberProposal: 2021-03
name: Proposal 2021-03 | Remove Exclusion of Containers from Common Policy
description: Remove the policy exclusion for using containers or container-type technology and include higher level language to accommodate future technologies compliant with the CP.
date: 10/26/2021
url: /docs/archived/fpki-common-cp-2103.pdf
status: post
remove: 12/15/2024
- category: Common Change Proposal
numberProposal: 2021-02
name: Proposal 2021-02 | Updates to Audit and Archive Sections of Common Policy
description: This proposal incorporates suggested changes to Sections 5.4 and 5.5 of Common Policy and other related references based on the input of the Audit and Archive Work Team that operated at the request of the CPWG.
date: 09/28/2021
url: /docs/archived/fpki-common-cp-2102.pdf
status: post
remove: 12/15/2024
- category: Common Certificate Policy
numberProposal: 2.0
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v2.0
date: 09/01/2020
url: /docs/archived/fpki-x509-cert-policy-common-20.pdf
status: post
remove: 05/18/2024
- category: Supplementary Guidance
name: FBCA Supplementary Antecedent, In-Person Definition
description: Working group document superseded by NIST SP 800-63-3A.
date: 07/16/2009
url: /docs/archived/fpki-fbca-antecedent.pdf
status: post
remove: 06/01/2023
- category: Common Change Proposal
numberProposal: 2021-01
name: Proposal 2021-01 | FPKI Key Recovery Policy Integration into COMMON Policy
description: This change proposal consolidates the existing Key Recovery Policy (KRP) requirements into Common Policy.
date: 04/13/2021
url: /docs/archived/fpki-common-cp-2101.pdf
status: post
remove: 04/13/2024
- category: Common Change Proposal
numberProposal: 2020-02
name: Proposal 2020-02 | General Update to COMMON Policy and Profiles
description: Updates the Certificate Policy and the certificate profile specification.
date: 08/29/2020
url: /docs/archived/fpki-common-cp-2002.pdf
status: post
remove: 08/29/2023
- category: Common Change Proposal
numberProposal: 2020-01
name: Proposal 2020-01 | PIV-I Credentials Issued Under COMMON Requirements
description: Support federally issued and managed PIV-I smart cards issued to non-PIV users under COMMON.
date: 03/10/2020
url: /docs/archived/fpki-common-cp-2001.pdf
status: post
remove: 03/10/2023
- category: Common Change Proposal
numberProposal: 2018-08
name: Proposal 2018-08 | Private Key Destruction Following CA Termination
description: Specify treatment of CA private keys and escrowed private keys following CA termination.
date: 11/02/2018
url: /docs/archived/fpki-common-cp-1808.pdf
status: archive
remove: 11/02/2021
- category: Common Change Proposal
numberProposal: 2018-07
name: Proposal 2018-07 | Remove Public Trust TLS Requirements
description: Remove the common-public-trusted-serverAuth certificate policy.
date: 10/24/2018
url: /docs/archived/fpki-common-cp-1807.pdf
status: archive
remove: 10/24/2021
- category: Common Change Proposal
numberProposal: 2018-06
name: Add Supervised Remote Identity Proofing and Other Guidance as Defined by NIST SP 800-63-3
description: Incorporate supervised remote identity proofing and other requirements, as defined in NIST SP 800-63-3.
date: 04/23/2018
url: /docs/archived/fpki-common-cp-1806.pdf
status: archive
remove: 04/23/2021
- category: Common Change Proposal
numberProposal: 2018-05
name: Requirements for Virtual Implementations under the COMMON Policy
description: Clarify the requirements in virtual machine environment (VME) implementations.
date: 07/21/2017
url: /docs/archived/fpki-common-cp-1805.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2018-04
name: Certificate Revocation Requirements for Transitive Closure under the COMMON Policy
description: Requirements for revoking or verifying certificates that were issued with a compromised RA credential or under otherwise unauthorized circumstances.
date: 07/17/2017
url: /docs/archived/fpki-common-cp-1804.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2018-03
name: Mandate Specific EKU in COMMON Policy CP and Its Associated Certificate Profiles
description: Mandate specific EKU and prohibit anyEKU.
date: 01/19/2018
url: /docs/archived/fpki-common-cp-1803.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2018-02
name: Update COMMON Policy To Reference Annual Review Requirements
description: Reference FPKI Annual Review Requirements.
date: 07/05/2017
url: /docs/archived/fpki-common-cp-1802.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2018-01
name: Require Key Recovery for Key Management Certificates Issued under the COMMON Policy
description: Require key escrow services for key management certificates and includes reference to the newly approved FPKI Key Recovery Policy (KRP).
date: 07/05/2017
url: /docs/archived/fpki-common-cp-1801.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2017-04
name: How Long Can PIV Card Stock Be Used Once They Are Removed From the GSA Approved Products List?
description: Clarifies the period of time during which PIV card stock that has been removed from the GSA Approved Products List (APL) can be used.
date: 04/03/2017
url: /docs/archived/fpki-common-cp-1704.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2017-03
name: CA Infrastructure Change Notification
description: Requires CAs issuing under the COMMON Policy Framework to notify FPKIPA whenever a change is made to their infrastructures.
date: 04/03/2017
url: /docs/archived/fpki-common-cp-1703.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2017-02
name: Notification of Issue Resolution and Remediation
description: Requires CAs issuing under the COMMON Policy Framework to publish information pertaining to resolved incidents on their websites.
date: 04/03/2017
url: /docs/archived/fpki-common-cp-1702.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2017-01
name: Align COMMON Certificate Policy with Certificate Profile Operational Practice
description: Updates the Certificate Policy and Certificate Profiles to align with current practices for CA certificates.
date: 04/14/2017
url: /docs/archived/fpki-common-cp-1701.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2016-02
name: Allow for Long-Term CRL for Retired CA Key
description: Allow a long-term CRL when a CA retires a key after performing a key changeover to align with the FPKI CPS.
date: 08/01/2016
url: /docs/archived/fpki-common-cp-1602.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2016-01
name: CAB Forum Baseline Requirements Alignment
description: Harmonizes the Certificate Policy requirements with CA/B Forum Baseline Requirements (BR) v1.3.4.
date: 04/26/2016
url: /docs/archived/fpki-common-cp-1601.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2015-01
name: Common Derived PIV Authentication Certificate Policy OIDs
description: Creates two new Common Derived PIV Authentication Certificate Policy OIDs in the Certificate Policy.
date: 04/02/2015
url: /docs/archived/fpki-common-cp-1501.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2013-03
name: Require PIV Cards To Be on GSA APL Prior to Issuance
description: Requires PIV cards to be on the GSA Approved Products List (APL) prior to issuance.
date: 11/13/2013
url: /docs/archived/fpki-common-cp-1303.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2013-02
name: Remove SHA-1 Policies from Common Policy
description: Removes SHA-1 policies from the Certificate Policy.
date: 11/04/2013
url: /docs/archived/fpki-common-cp-1302.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2013-01
name: Common Policy CP Clarifications Recommended to the FPKIMA during the Annual PKI Compliance Audit
description: Clarifies places in the Certificate Policy that were flagged during the FPKIMA Annual Audit.
date: 08/13/2013
url: /docs/archived/fpki-common-cp-1301.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2012-05
name: Common PIV Content Signing Policy OID
description: Creates a new Common PIV Content Signing Policy OID in the Certificate Policy.
date: 10/04/2012
url: /docs/archived/fpki-common-cp-1205.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2012-04
name: Operate Common Policy CA Offline
description: Details and clarifies the Certificate Policy CA’s CRL issuance policies to ensure that Offline Root CA operations are permitted.
date: 08/14/2012
url: /docs/archived/fpki-common-cp-1204.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2012-03
name: Delegation of Certain Device Sponsor Responsibilities
description: Allows a human device sponsor to delegate them to an authorized administrator of the device.
date: 05/17/2012
url: /docs/archived/fpki-common-cp-1203.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2012-02
name: Time Stamp Authority Requirement with Code Signing Certificates
description: Requires organizations receiving a code-signing certificate to have access to a Time Stamp Authority.
date: 05/03/2012
url: /docs/archived/fpki-common-cp-1202.pdf
status: archive
- category: Common Change Proposal
numberProposal: 2012-01
name: Updates to Certificate Policy to RA & CMS Audit Requirements
description: Clarifies audit requirements for Registration Authorities (RA), Card Management Systems (CMS), and other PKI system components.
date: 05/03/2012
url: /docs/archived/fpki-common-cp-1201.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2019-01
name: Proposal 2019-01 | Allow Offline Federal Bridge Certification Authority
description: Allow the Federal Bridge Certification Authority to be operated in an off-line status.
date: 02/28/2019
url: /docs/archived/fpki-fbca-cp-1901.pdf
status: post
remove: "*02/28/2022"
- category: Federal Bridge Change Proposal
numberProposal: 2018-06
name: Add Supervised Remote Identity Proofing and Other Guidance as Defined by NIST SP 800-63-3
description: Incorporate supervised remote identity proofing and other requirements, as defined in NIST SP 800-63-3.
date: 04/23/2018
url: /docs/archived/fpki-fbca-cp-1806.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2018-05
name: Requirements for Virtual Implementations under the BRIDGE Policy
description: Clarify the requirements in virtual machine environment (VME) implementations.
date: 07/21/2017
url: /docs/archived/fpki-fbca-cp-1805.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2018-04
name: Certificate Revocation Requirements for Transitive Closure under the BRIDGE Policy
description: Requirements for revoking or verifying certificates that were issued with a compromised RA credential or under otherwise unauthorized circumstances.
date: 07/17/2017
url: /docs/archived/fpki-fbca-cp-1804.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2018-03
name: Mandate Specific EKU in BRIDGE Policy CP and Its Associated Certificate Profiles
description: Mandate specific EKU and prohibit anyEKU.
date: 01/19/2018
url: /docs/archived/fpki-fbca-cp-1803.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2018-02
name: Update BRIDGE Policy To Reference Annual Review Requirements
description: Reference FPKI Annual Review Requirements.
date: 07/06/2017
url: /docs/archived/fpki-fbca-cp-1802.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2018-01
name: Require Key Recovery for Key Management Certificates Issued under the BRIDGE Policy
description: Require key escrow services for key management certificates and includes reference to the newly approved FPKI Key Recovery Policy (KRP).
date: 07/06/2017
url: /docs/archived/fpki-fbca-cp-1801.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2017-05
name: Limit Affiliate Relationship to a Single Path
description: Requires that CAs that are cross-certified with the FBCA to have a single trust path to the FBCA.
date: 04/03/2017
url: /docs/archived/fpki-fbca-cp-1705.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2017-04
name: How Long Can PIV-I Card Stock Be Used Once They Are Removed From the GSA Approved Products List?
description: Clarifies the period of time during which PIV card stock that has been removed from the GSA Approved Products List (APL) can be used.
date: 04/03/2017
url: /docs/archived/fpki-fbca-cp-1704.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2017-03
name: CA Infrastructure Change Notification
description: Requires CAs issuing under the COMMON Policy Framework to notify FPKIPA whenever a change is made to their infrastructures.
date: 04/03/2017
url: /docs/archived/fpki-fbca-cp-1703.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2017-02
name: Notification of Issue Resolution and Remediation
description: Requires CAs issuing under the COMMON Policy Framework to publish information pertaining to resolved incidents on their websites.
date: 04/03/2017
url: /docs/archived/fpki-fbca-cp-1702.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2017-01
name: Align BRIDGE Certificate Policy with Certificate Profile Operational Practice
description: Updates the Certificate Policy and Certificate Profiles to align with current practices for CA certificates.
date: 04/14/2017
url: /docs/archived/fpki-fbca-cp-1701.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2016-03
name: Allow Alternate FBCA Key Change Procedures
description: Allow the FBCA to use a new superior certificate rather than key rollover certificates in conjunction with a Directory Name change.
date: 09/12/2016
url: /docs/archived/fpki-fbca-cp-1603.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2016-02
name: Allow for Long-Term CRL for Retired CA key
description: Allow a long-term CRL when a CA retires a key after performing a key changeover to align with the FPKI CPS.
date: 08/01/2016
url: /docs/archived/fpki-fbca-cp-1602.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2016-01
name: Subscriber Private Key Protection for Multiple Keys or Key Holders
description: Adds guidance for protecting Medium assurance private keys when multiple keys are co-located or when stored on behalf of others.
date: 12/16/2015
url: /docs/archived/fpki-fbca-cp-1601.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2015-02
name: Align PIV-I Card Life with FIPS 201-2
description: Allows 6-year PIV-I cards to align with two full certificate life-cycles.
date: 11/24/2015
url: /docs/archived/fpki-fbca-cp-1502.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2015-01
name: Clarifying Assertion of Policies for Devices
description: Clarifies Assertion of Policies for Devices.
date: 10/20/2015
url: /docs/archived/fpki-fbca-cp-1501.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2013-02
name: Move SHA-1 Policies from Common Policy to FBCA and Remove 12-31-2013 Restriction on All SHA-1 Policies
description: Moves SHA-1 policy definitions from the Common Policy Certificate Policy to the FBCA Certificate Policy and removes the 12/31/2013 restriction.
date: 11/04/2013
url: /docs/archived/fpki-fbca-cp-1302.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2013-01
name: FBCA CP Clarifications Recommended to the FPKIMA during the Annual PKI Compliance Audit
description: Clarifies places in the Certificate Policy that were flagged during the FPKIMA Annual Audit.
date: 08/13/2013
url: /docs/archived/fpki-fbca-cp-1301.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2012-01
name: Updates to Certificate Policy to RA & CMS Audit Requirements
description: Adds clarifications about audit requirements for Registration Authorities (RA), Card Management Systems (CMS), and other PKI system components.
date: 03/01/2012
url: /docs/archived/fpki-fbca-cp-1201.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2012-01
name: Updates to Certificate Policy to RA & CMS Audit Requirements
description: Adds clarifications about audit requirements for Registration Authorities (RA), Card Management Systems (CMS), and other PKI system components.
date: 03/01/2012
url: /docs/archived/fpki-fbca-cp-1201.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2011-06
name: Remove requirements for Lightweight Directory Access Protocol (LDAP) references in certificates
description: Eliminates the mandatory requirements to include LDAP references in certificates.
date: 09/20/2011
url: /docs/archived/fpki-fbca-cp-1106.pdf
status: archive
- category: Federal Bridge Change Proposal
numberProposal: 2008-02
name: Changes to FBCA CP to clarify the archive definition and how its records are intended to be used
description: Clarifies the purpose of archiving and the archiving requirements for auditable events.
date: 06/24/2008
url: /docs/archived/fpki-fbca-cp-0802.pdf
status: archive
- category: Common Profile
numberProposal: 2.0
name: X.509 Common Policy Certificate and Certificate Revocation List Profiles v2.0
date: 09/01/2020
url: /docs/archived/fpki-common-profile-20.pdf
status: post
remove: 09/01/2023
- category: Common Profile
numberProposal: 1.9
name: X.509 Common Policy Certificate and Certificate Revocation List Profiles v1.9
date: 05/09/2018
url: /docs/archived/fpki-common-profile-19.pdf
status: archive
- category: Common Profile
numberProposal: 1.8
name: X.509 Common Policy Certificate and Certificate Revocation List Profiles v1.8
date: 07/17/2017
url: /docs/archived/fpki-common-profile-18.pdf
status: archive
- category: PIV-I Profile
numberProposal: 1.2
name: X.509 PIV-I Certificate and Certificate Revocation List Profiles v1.2
date: 07/17/2017
url: /docs/archived/fpki-pivi-profile-12.pdf
status: archive
- category: Common Certificate Policy
numberProposal: 1.32
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v1.32
date: 04/14/2020
url: /docs/archived/fpki-x509-cert-policy-common-132.pdf
status: post
remove: 09/01/2023
- category: Common Certificate Policy
numberProposal: 1.31
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v1.31
date: 02/08/2019
url: /docs/archived/fpki-x509-cert-policy-common-131.pdf
status: post
remove: "*04/14/2023"
- category: Common Certificate Policy
numberProposal: 1.30
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v1.30
date: 10/4/2018
url: /docs/archived/fpki-x509-cert-policy-common-130.pdf
status: post
remove: "*02/08/2022"
- category: Common Certificate Policy
numberProposal: 1.29
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v1.29
date: 10/10/2018
url: /docs/archived/fpki-x509-cert-policy-common-129.pdf
status: archive
remove: 10/04/2021
- category: Common Certificate Policy
numberProposal: 1.28
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v1.28
date: 04/04/2018
url: /docs/archived/fpki-x509-cert-policy-common-128.pdf
status: archive
- category: Common Certificate Policy
numberProposal: 1.27
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v1.27
date: 06/29/2017
url: /docs/archived/fpki-x509-cert-policy-common-127.pdf
status: archive
- category: Common Certificate Policy
numberProposal: 1.26
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v1.26
date: 02/02/2017
url: /docs/archived/fpki-x509-cert-policy-common-126.pdf
status: archive
- category: Common Certificate Policy
numberProposal: 1.25
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v1.25
date: 09/22/2016
url: /docs/archived/fpki-x509-cert-policy-common-125.pdf
status: archive
- category: Common Certificate Policy
numberProposal: 1.24
name: X.509 Certificate Policy For The U.S. FPKI Common Policy Framework v1.24
date: 05/07/2015
url: /docs/archived/fpki-x509-cert-policy-common-124.pdf
status: archive
- category: Federal Bridge Certificate Policy
numberProposal: 2.34
name: X.509 Certificate Policy For The Federal Bridge CA (FBCA) v2.34
date: 10/04/2018
url: /docs/archived/fpki-x509-cert-policy-fbca-234.pdf
status: post
remove: "*04/15/2023"
- category: Federal Bridge Certificate Policy
numberProposal: 2.33
name: X.509 Certificate Policy For The Federal Bridge Certification Authority (FBCA) v2.33
date: 05/10/2018
url: /docs/archived/fpki-x509-cert-policy-fbca-233.pdf
status: archive
- category: Federal Bridge Certificate Policy
numberProposal: 2.32
name: X.509 Certificate Policy For The Federal Bridge Certification Authority (FBCA) v2.32
date: 04/04/2018
url: /docs/archived/fpki-x509-cert-policy-fbca-232.pdf
status: archive
- category: Federal Bridge Certificate Policy
numberProposal: 2.31
name: X.509 Certificate Policy For The Federal Bridge Certification Authority (FBCA) v2.31
date: 06/29/2017
url: /docs/archived/fpki-x509-cert-policy-fbca-231.pdf
status: archive
- category: Federal Bridge Certificate Policy
numberProposal: 2.30
name: X.509 Certificate Policy For The Federal Bridge Certification Authority (FBCA) v2.30
date: 10/05/2016
url: /docs/archived/fpki-x509-cert-policy-fbca-230.pdf
status: archive
- category: Federal Bridge Certificate Policy
numberProposal: 2.29
name: X.509 Certificate Policy For The Federal Bridge Certification Authority (FBCA) v2.29
date: 05/20/2016
url: /docs/archived/fpki-x509-cert-policy-fbca-229.pdf
status: archive
- category: Federal Bridge Certificate Policy
numberProposal: 2.28
name: X.509 Certificate Policy For The Federal Bridge Certification Authority (FBCA) v2.28
date: 01/14/2016
url: /docs/archived/fpki-x509-cert-policy-fbca-228.pdf
status: archive