Update docs.
This commit is contained in:
parent
ea6a050b92
commit
387428a49b
29
README.md
29
README.md
|
@ -6,19 +6,22 @@ of these in superfluous repositories of their own, I'm putting them here.
|
||||||
|
|
||||||
Contents:
|
Contents:
|
||||||
|
|
||||||
die/ Death of a program.
|
die/ Death of a program.
|
||||||
cmd/
|
cmd/
|
||||||
certchain/ Display the certificate chain from a
|
certchain/ Display the certificate chain from a
|
||||||
TLS connection.
|
TLS connection.
|
||||||
certdump/ Dump certificate information.
|
certdump/ Dump certificate information.
|
||||||
csrpubdump/ Dump the public key from an X.509
|
csrpubdump/ Dump the public key from an X.509
|
||||||
certificate request.
|
certificate request.
|
||||||
fragment/ Print a fragment of a file.
|
fragment/ Print a fragment of a file.
|
||||||
readchain/ Print the common name for the certificates
|
pembody/ Print the body of a PEM certificate.
|
||||||
in a bundle.
|
showimp/ List the external (e.g. non-stdlib and outside the
|
||||||
stealchain/ Dump the verified chain from a TLS
|
current working directory) imports for a Go file.
|
||||||
connection.
|
readchain/ Print the common name for the certificates
|
||||||
|
in a bundle.
|
||||||
|
stealchain/ Dump the verified chain from a TLS
|
||||||
|
connection.
|
||||||
|
|
||||||
Each program should have a small README in the directory with more information.
|
Each program should have a small README in the directory with more information.
|
||||||
|
|
||||||
All code here is licensed under the MIT license.
|
All code here is licensed under the MIT license.
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
pembody
|
||||||
|
|
||||||
|
This is a utility for decoding PEM-encoded files and spewing their
|
||||||
|
contents to standard output. No trailing newline is appended.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
$ cat file.pem
|
||||||
|
-----BEGIN TEST DATA-----
|
||||||
|
c2FtcGxlIGJpbmFyeSBkYXRh
|
||||||
|
-----END TEST DATA-----
|
||||||
|
$ pembody file.pem
|
||||||
|
sample binary data$
|
||||||
|
|
Loading…
Reference in New Issue