barleybobs / RootCertificates

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

Home Page:https://raw.githubusercontent.com/barleybobs/RootCertificates/main/certificates.json

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

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

https://raw.githubusercontent.com/barleybobs/RootCertificates/main/certificates.json


Languages

Language:Python 100.0%