mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-03 19:07:41 +03:00
Formatting
This commit is contained in:
parent
20511d68bd
commit
a107da469c
1 changed files with 9 additions and 10 deletions
19
README.md
19
README.md
|
@ -24,40 +24,39 @@ Creating a key pair
|
|||
|
||||
$ minisign -G
|
||||
|
||||
The public key is put into the `minisign.pub` file, and the secret key
|
||||
into the `minisign.key` file.
|
||||
The public key is printed and put into the `minisign.pub` file. The secret key
|
||||
is encrypted and saved as `minisign.key` file.
|
||||
|
||||
Signing a file
|
||||
--------------
|
||||
|
||||
$ minisign -S -m myfile.txt
|
||||
$ minisign -Sm myfile.txt
|
||||
|
||||
Or to include a comment in the signature, that will be verified and
|
||||
displayed when verifying the file:
|
||||
|
||||
$ minisign -S -m myfile.txt -t 'This comment will be signed as well'
|
||||
$ minisign -Sm myfile.txt -t 'This comment will be signed as well'
|
||||
|
||||
The signature is put into `myfile.txt.minisig`.
|
||||
|
||||
Verifying a file
|
||||
----------------
|
||||
|
||||
$ minisign -V -P RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3 -m myfile.txt
|
||||
$ minisign -Vm myfile.txt -P RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3
|
||||
|
||||
or
|
||||
|
||||
$ minisign -V -p signature.pub -m myfile.txt
|
||||
$ minisign -Vm myfile.txt -p signature.pub
|
||||
|
||||
This requires the signature `myfile.txt.minisig` to be present in the same
|
||||
directory.
|
||||
The public key can either reside in a file (`./minisign.pub` by
|
||||
default) or can be directly specified on the command line.
|
||||
|
||||
The public key can either reside in a file (`./minisign.pub` by default) or be
|
||||
directly specified on the command line.
|
||||
|
||||
Usage
|
||||
-----
|
||||
|
||||
|
||||
|
||||
$ minisign -G [-p pubkey] [-s seckey]
|
||||
$ minisign -S [-x sigfile] [-s seckey] [-c untrusted_comment] [-t trusted_comment] -m file
|
||||
$ minisign -V [-x sigfile] [-p pubkeyfile | -P pubkey] [-q] -m file
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue