Add tlskeypair utility.

This commit is contained in:
Kyle Isom
2015-11-18 09:36:05 -08:00
parent ffd7feb30a
commit 8894cbf419
3 changed files with 179 additions and 0 deletions

17
cmd/tlskeypair/README Normal file
View File

@@ -0,0 +1,17 @@
tlskeypair
This is a small utility that prints whether a certificate and private
key correspond. Specify the private key file with -k and the
certificate with -c.
Example:
$ tlskeypair -k server.key -c server.pem
Match.
$ echo $?
0
$ tlskeypair -k server.key -c client.pem
No match (public keys don't match).