goutils/cmd/tlskeypair
Kyle Isom 1650edee19 Use goutils/die instead of kisom/die.
Also removes the "logging" package from showimp, as this is intended
primarily for server programs.
2016-04-28 11:29:58 -07:00
..
README Add tlskeypair utility. 2015-11-18 09:36:05 -08:00
main.go Use goutils/die instead of kisom/die. 2016-04-28 11:29:58 -07:00

README

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).