CA Certificate Installation Guide

Quick Index

For Linux (Tested on Ubuntu)

  1. Download the CA Certificate from https://cacert.bose.dev/.
  2. Copy the Certificate to the System Certificate Directory:
  3. Update the CA Certificate Store:

For Windows

Quick Method:

  1. Download the CA Certificate from https://cacert.bose.dev/ and locate the file in File Explorer.
  2. Double-Click the Certificate File:
  3. Open the Certificate Installation Wizard:
  4. Choose the Certificate Store:
  5. Complete the Wizard:

Through Windows Certificate Store (alternative):

  1. Download the CA Certificate from https://cacert.bose.dev/.
  2. Open the Certificate Manager:
  3. Import the Certificate:
  4. Use the Certificate Import Wizard:
  5. Choose the Certificate Store:
  6. Complete the Wizard:

For MacOS

  1. Download the CA Certificate from https://cacert.bose.dev/.
  2. Double-Click the Certificate File:
  3. Choose the Keychain:
  4. Trust the Certificate:

For FreeBSD

  1. Download the CA Certificate from https://cacert.bose.dev/.
  2. Copy the Certificate to the System Certificate Directory:
  3. Update the CA Certificate Store:

For Android

  1. Download the CA Certificate from https://cacert.bose.dev/.
  2. Open the Certificate File:
  3. Install the Certificate:

Optional: Install the Certificate for Firefox

Some apps, like Firefox, use their own certificate store. To install the certificate follow these steps:

  1. Go to Settings > About Firefox.
  2. Tap the Firefox logo 5 times to enable debugging options.
  3. Go back to Settings and open Advanced > Certificates.
  4. Tap Import and select your CA certificate file.

For iOS

  1. Download the CA Certificate from https://cacert.bose.dev/.
  2. Open the Certificate File:
  3. Install the Certificate:
  4. Trust the Certificate:

For Firefox (on Windows/Linux/MacOS/FreeBSD)

Firefox uses its own CA certificate bundle, which is independent of OS's CA bundle/store. So, in addition to CA certificate installation to your OS, you also need to install it in Firefox.
To install a CA certificate in Firefox, follow these steps:

  1. Download the CA Certificate from https://cacert.bose.dev/.
  2. Open Firefox Settings:
  3. Navigate to Privacy & Security:
  4. Scroll to Certificates:
  5. View Certificates:
  6. Import the CA Certificate:
  7. Trust the Certificate:

For Python programming

By default Python uses its own CA certificate bundle. So OS's system-wide installation will not be enough.
You have three options:

  1. Option 1 (recommended): Make Python use the system-wide CA certificate bundle file by setting SSL_CERT_FILE environment variable (not applicable for Windows as Windows does not have CA bundle file):
  2. Option 2: Update the CA bundle file of Python to add your CA.
  3. Option 3: Add the CA certificate during the runtime of your code: