Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.23 KB

README.md

File metadata and controls

41 lines (32 loc) · 1.23 KB

Root Certificate Database

This repository contains a json file containing an array of root certificates and whether they are trusted by various root stores. It also contains the owner, certificate, and the SHA-256 hash of the root certificate.

All of this information is gathered from the Common CA Database.

It splits trust into whether they are trusted for websites and email.

Note

This repository is automatically updated by a GitHub Action daily at midnight (UTC).

Currently supported Root Stores

  • Apple
  • Google (Chrome)
  • Microsoft
  • Mozilla

Certificate format

{
    "owner": "A-Trust",
    "certificate_name": "A-Trust-Root-07",
    "sha256": "8AC552AD577E37AD2C6808D72AA331D6A96B4B3FEBFF34CE9BC0578E08055EC3",
    "web": {
        "apple": false,
        "chrome": false,
        "microsoft": true,
        "mozilla": false
    },
    "email": {
        "apple": false,
        "microsoft": false,
        "mozilla": false
    }
},

Credits

This project uses data from the Common CA Database. This project is not endorsed or promoted by the Common CA Database (CCADB).