aboutsummaryrefslogtreecommitdiff
path: root/src/x509-info/README.md (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-08-29fix readme for x509-info projectFranck Cuny1-4/+4
2024-04-28fix URL to the repositoryFranck Cuny1-2/+0
2023-03-28add a flag to check expired certificateFranck Cuny1-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.
2022-11-13doc: update READMEFranck Cuny1-7/+55
2022-11-06ci: switch from GitHub action to droneFranck Cuny1-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
2022-10-21feat: get information about a given certificateFranck Cuny1-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 ```