Document -p and -s global options.

pull/2/head
Christopher Wellons 2017-03-04 12:01:59 -05:00
parent 3ee9942c01
commit 0fef876596
1 changed files with 3 additions and 3 deletions

6
docs.h
View File

@ -1,6 +1,6 @@
static const char docs_usage[] =
"usage enchive [--random-device <file>]\n"
" [--pubkey <file>] [--seckey <file>]\n"
" [-p|--pubkey <file>] [-s|--seckey <file>]\n"
" <command> [args]\n"
"\n"
"Commands (unique prefixes accepted):\n"
@ -10,8 +10,8 @@ static const char docs_usage[] =
" help get help on a specific topic\n"
"\n"
" --random-device <file> select the entropy source [/dev/urandom]\n"
" --pubkey <file> set the public key file [~/.enchive.pub]\n"
" --seckey <file> set the secret key file [~/.enchive.sec]\n"
" --pubkey <file>, -p set the public key file [~/.enchive.pub]\n"
" --seckey <file>, -s set the secret key file [~/.enchive.sec]\n"
"\n"
"Enchive archives files by encrypting them to yourself using your\n"
"public key. It uses ChaCha20, Curve25519, and SHA-224.\n";