Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/klaus-tockloth/certstate-pemdecode
Decodes PEM-formatted certstate output.
https://github.com/klaus-tockloth/certstate-pemdecode
Last synced: 11 days ago
JSON representation
Decodes PEM-formatted certstate output.
- Host: GitHub
- URL: https://github.com/klaus-tockloth/certstate-pemdecode
- Owner: Klaus-Tockloth
- License: mit
- Created: 2018-10-01T06:14:48.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-04T10:38:26.000Z (about 5 years ago)
- Last Synced: 2024-06-19T15:09:31.118Z (6 months ago)
- Language: Go
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# certstate-pemdecode
## Purpose
'certstate-pemdecode' is a companion utility for 'certstate'. If 'certstate' is used with the '-verbose' option, the output
includes PEM-formatted certificates, OCSP responses and CRLs. 'certstate-pemdecode' expands the PEM-formatted sections into
plain text. OpenSSL is called to achieve this.## Usage
```txt
$ ./certstate-pemdecodeProgram:
Name : ./certstate-pemdecode
Release : v0.2.0 - 2019/11/04
Purpose : PEM decode
Info : Decodes PEM-formatted certstate output.Error:
File argument required.Usage:
./certstate-pemdecode fileExamples:
./certstate-pemdecode certstate.outArgument:
file
certstate output file with PEM-formatted (verbose) data objectsOpenSSL output commands:
Certificate : openssl x509 -certopt ext_dump -text -noout -inform PEM -in tempfile
OCSP response : openssl ocsp -text -noverify -respin tempfile
CRL : openssl crl -text -noout -inform PEM -in tempfile
```## Remarks
The master branch is used for program development and may be unstable. See 'Releases' for pre-build binaries.
## Build (master)
go get github.com/Klaus-Tockloth/certstate-pemdecode
make
## Links
github.com/Klaus-Tockloth/certstate
## Releases
### v0.1.0, 2018/10/01
- initial release
### v0.2.0, 2019/11/04 (pre-release)
- CRL support added