readme: add openssl cli

This commit is contained in:
2025-11-16 11:23:15 -05:00
parent 9c546bd90b
commit f9fe911902

View File

@@ -31,3 +31,15 @@ podman run -v $PWD:/w -w /w --rm golang go run go.balki.me/certinfo@latest foo.c
```
docker run -v $PWD:/w -w /w --rm golang go run go.balki.me/certinfo@latest foo.crt
```
---
Prefer to use the ugly openssl CLI instead ?
```
openssl x509 -in foo.crt -text -noout
```
```
podman run -v $PWD:/w -w /w --rm archlinux openssl x509 -in foo.crt -text -noout
```