Skip to content

A JSON formatted file containing information about root certificates including whether they are trusted by various root stores, owner, certificate, SHA-256 hash.

Notifications You must be signed in to change notification settings

barleybobs/RootCertificates

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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).