~minus/sshign

Small program to sign & verify files with your SSH key
8b9d4934 — minus 4 years ago
Create manpage dir in Makefile
439954ca — minus 4 years ago
Bump version to 0.2.0
57c4d1d0 — minus 4 years ago
Include man page in Makefile

clone

read-only
https://git.sr.ht/~minus/sshign
read/write
git@git.sr.ht:~minus/sshign

You can also use your local clone with git send-email.

#sshign

Small utility to sign and verify payloads using SSH keys.

#Building

Requires Go 1.13 or newer and scdoc for docs.

$ make
$ ./sshign -h

#Usage

Signing:

$ echo "This is my message" > sign-me.txt
$ ./sshign ~/.ssh/id_rsa < sign-me.txt > signature.txt

Verification:

$ ./sshign ~/.ssh/id_rsa.pub signature.txt < sign-me.txt
verify: ok