From a107da469cf25f073447cb1c39a2898cdece30db Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 9 Jun 2015 14:27:39 +0200 Subject: [PATCH] Formatting --- README.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2188e1e..2e3885f 100644 --- a/README.md +++ b/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