File: README

package info (click to toggle)
golang-github-kisom-goutils 0.0~git20161101.0.858c9cb-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 384 kB
  • ctags: 331
  • sloc: makefile: 6
file content (17 lines) | stat: -rw-r--r-- 321 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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).