├── .cspell.yml ├── .envrc ├── .git-cliff.toml ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── dependabot.yml │ ├── deploy.yml │ ├── lint.yml │ └── release.yml ├── .gitignore ├── .prettierrc.yml ├── .release-plz.toml ├── .rustfmt.toml ├── .taplo.toml ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── README.md ├── flake.lock ├── flake.nix ├── justfile ├── roots ├── Autoridad.crt.pem ├── DigiCertTLSECCP384RootG5.crt.pem ├── affirmtrust_commercial.crt.pem └── ietf-org-chain.pem └── src ├── ext.rs ├── fetch.rs ├── info.rs ├── logging.rs ├── main.rs ├── tui.rs └── util.rs /.cspell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/.cspell.yml -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.git-cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/.git-cliff.toml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [robjtede] 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/.github/workflows/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.release-plz.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/.release-plz.toml -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /.taplo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/.taplo.toml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/flake.nix -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/justfile -------------------------------------------------------------------------------- /roots/Autoridad.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/roots/Autoridad.crt.pem -------------------------------------------------------------------------------- /roots/DigiCertTLSECCP384RootG5.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/roots/DigiCertTLSECCP384RootG5.crt.pem -------------------------------------------------------------------------------- /roots/affirmtrust_commercial.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/roots/affirmtrust_commercial.crt.pem -------------------------------------------------------------------------------- /roots/ietf-org-chain.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/roots/ietf-org-chain.pem -------------------------------------------------------------------------------- /src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/src/ext.rs -------------------------------------------------------------------------------- /src/fetch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/src/fetch.rs -------------------------------------------------------------------------------- /src/info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/src/info.rs -------------------------------------------------------------------------------- /src/logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/src/logging.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/tui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/src/tui.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/inspect-cert-chain/HEAD/src/util.rs --------------------------------------------------------------------------------