Tools for fetching and analyzing CA certificates
.gitignore | ||
analyze_certs.py | ||
fetch_ca_certs.py | ||
poetry.lock | ||
pyproject.toml | ||
README.md |
Case study of existing CA certificates
Generating the Markdown/SVG files
- Get the CA certificates of the CAs from their corresponding web sites
- Run the generation script and filter through
pandoc
for better markdown layout
for dir in cacert certum dtrust globalsign letsencrypt sectigo
do
poetry run python3 analyze_certs.py $dir | \
pandoc -f markdown -t gfm > $dir.md
done