getaCert Root CA Certificates
Download and install our root CA certificate to trust certificates signed by getaCert.com.
For development and testing only. getaCert.com is not a publicly trusted Certificate Authority. Do not use these certificates in production.
Current CA — RSA 4096-bit (Recommended)
| Key Type | RSA 4096-bit |
|---|---|
| Signature | SHA-256 |
| Valid | 2026 – 2076 (50 years) |
| Subject | O=getaCert - www.getacert.com, L=Seattle, ST=Washington, C=US |
Legacy CA — RSA 2048-bit
For users who generated certificates before March 2026. This CA is no longer used for new certificates.
| Key Type | RSA 2048-bit |
|---|---|
| Signature | SHA-256 |
| Valid | 2016 – 2038 |
| Subject | O=getaCert - www.getacert.com, L=Seattle, ST=Washington, C=US |
How to Install the Root CA Certificate
Windows
- Double-click the downloaded
.crtfile - Click Install Certificate
- Select Local Machine, click Next
- Select Place all certificates in the following store
- Click Browse and select Trusted Root Certification Authorities
- Click Next, then Finish
macOS
- Double-click the downloaded
.crtfile to open it in Keychain Access - It will be added to the login keychain
- Find the certificate (getaCert - www.getacert.com), double-click it
- Expand Trust and set When using this certificate to Always Trust
- Close the window and enter your password to confirm
Linux (Ubuntu/Debian)
sudo cp getacert.cer /usr/local/share/ca-certificates/getacert.crt
sudo update-ca-certificates
Linux (RHEL/CentOS/Fedora)
sudo cp getacert.cer /etc/pki/ca-trust/source/anchors/getacert.crt
sudo update-ca-trust
Firefox (all platforms)
Firefox uses its own certificate store, separate from the OS.
- Open Settings → Privacy & Security → Certificates → View Certificates
- Click the Authorities tab
- Click Import and select the downloaded
.crtfile - Check Trust this CA to identify websites
- Click OK
Chrome / Edge (all platforms)
Chrome and Edge use the OS certificate store on Windows and macOS. On Linux:
certutil -d sql:$HOME/.pki/nssdb -A -t "C,," -n "getaCert" -i getacert.cer
Java / JVM
keytool -import -trustcacerts -alias getacert \
-file getacert.cer \
-keystore $JAVA_HOME/lib/security/cacerts \
-storepass changeit
Node.js
export NODE_EXTRA_CA_CERTS=/path/to/getacert.cer