aboutsummaryrefslogtreecommitdiff
path: root/src/x509-info/README.md (follow)
Commit message (Collapse)AuthorAgeFilesLines
* certcheck to see x509 certification detailsFranck Cuny2025-09-061-72/+0
|
* fix readme for x509-info projectFranck Cuny2025-08-291-4/+4
|
* fix URL to the repositoryFranck Cuny2024-04-281-2/+0
|
* add a flag to check expired certificateFranck Cuny2023-03-281-10/+19
| | | | | | | | | Add the `--insecure` flag so we can check certificates that are expired. When using the short format for the output (the default), if the certificate has expired, it will report how many days ago. For certificates that have not expired, the remaining number of days will be printed.
* doc: update READMEFranck Cuny2022-11-131-7/+55
|
* ci: switch from GitHub action to droneFranck Cuny2022-11-061-0/+2
| | | | | | | | | | | I'm running my own CI at ci.fcuny.net using drone for now. I've spare compute capacity at home, and it's way faster than the GHA runners. For now I'm losing the following: - dependabot: that's a GitHub only function, I'll need to figure out something - nix flake update: I'll need to figure out a way to update flakes on a regular basis, probably a custom script to take care of that
* feat: get information about a given certificateFranck Cuny2022-10-211-0/+15
Read the domain name from the CLI, and get and print information about the certificate to STDOUT. The output looks like this: ``` > ./target/debug/x509-info badssl.com Subject: CN=*.badssl.com O= L= Issuer: CN=R3 O=Let's Encrypt L= DNS Names: *.badssl.com, badssl.com Validity Period Not before: 2022-08-12T07:57:46-07:00 Not After: 2022-11-10T06:57:45-08:00 ```