Certificate revocation lists

How to set this CA’s root certificate as trusted in various clients.

Firefox

Install in Firefox

Ubuntu

Download the certificates from this site and copy them to /usr/local/share/ca-certificates/

Run the following command : sudo dpkg-reconfigure ca-certificates

Mac OS X

Use command: sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain ~/new-root-certificate.crt

Windows

Use command: certutil -addstore -f "ROOT" new-root-certificate.crt

Debian

Copy your CA to dir /usr/local/share/ca-certificates/

Use command: sudo cp foo.crt /usr/local/share/ca-certificates/foo.crt

Update the CA store: sudo update-ca-certificates

CentOs 6

Install the ca-certificates package: yum install ca-certificates

Enable the dynamic CA configuration feature: update-ca-trust force-enable

Add it as a new file to /etc/pki/ca-trust/source/anchors/: cp foo.crt /etc/pki/ca-trust/source/anchors/

Use command: update-ca-trust extract

How to request a signed certificates from by this CA.

Contact me

How to request revocation in case of loss or compromise of private keys.

Contact me