On April 22, 2021, the US government revoked the DigiCert Federal SSP Intermediate CA - G5 which is the intermediate certificate bridging trust between Digicert and the Federal Common Policy CA. This was replaced by the Federal Common Policy CA G2 certificate. Systems relying on FBCA certificates need to remove the old certificate and import the new one.
This revocation only affects FBCA certificates. Customers who do not participate in the Federal Bridge CA program are not affected.
Delete the old Federal Common Policy CA certificate and import the Federal Common Policy CA G2 certificate.
You can remove the certificate via mmc.exe on your computer.
Once you have deleted the old certificate, you can import it:
You can find all instances of the Federal Common Policy CA G2 and save the information to a txt file with this command. This is a recommended backup in case you need to revert to previous settings. The txt file is saved to your Desktop.
Get-ChildItem "Cert:\LocalMachine" -recurse | Where-Object {$_.Subject -match "CN=Federal Common Policy CA"} > “$env:USERPROFILE\Desktop\trust_store_backup.txt” |
Use this “one-liner” in PowerShell to remove all instances of the Federal Common Policy CA from your computer.
Get-ChildItem "Cert:\ LocalMachine" -recurse | Where-Object {$_.Subject -match "CN=Federal Common Policy CA"} | Remove-Item |
Once you have removed the old certificate, you can import the new one.
Download the new Federal Common Policy CA G2 certificate.
Invoke-WebRequest -Uri http://repo.fpki.gov/fcpca/fcpcag2.crt -OutFile “$env:USERPROFILE\Downloads\fcpcag2.crt” |
Certificate’s SHA1 thumbprint:
99B4251E2EEE05D8292E8397A90165293D116028
Certificate’s SHA2 thumbprint:
5F9AECC24616B2191372600DD80F6DD320C8CA5A0CEB7F09C985EBF0696934FC
Import the new certificate to the Root and Intermediate trust stores by running these two commands.
1. Import-Certificate –filepath “$env:USERPROFILE\Downloads\fcpcag2.crt” –certStorelocation cert:\LocalMachine\Root 2. Import-Certificate –filepath “$env:USERPROFILE\Downloads\fcpcag2.crt” –certStorelocation cert:\LocalMachine\CA |
More Info: