diff --git a/index.html b/index.html index 777f053..403eecd 100644 --- a/index.html +++ b/index.html @@ -95,27 +95,30 @@
Usage:
-minisign -G [-p pubkey] [-s seckey]
-minisign -S [-l] [-x sigfile] [-s seckey] [-c untrusted_comment] [-t trusted_comment] -m file [file ...]
-minisign -V [-H] [-x sigfile] [-p pubkeyfile | -P pubkey] [-o] [-q] -m file
-minisign -R -s seckey -p pubkeyfile
+minisign -G [-f] [-p pubkey_file] [-s seckey_file] [-W]
+minisign -R [-s seckey_file] [-W] [-p pubkey_file]
+minisign -C [-s seckey_file] [-W]
+minisign -S [-l] [-x sig_file] [-s seckey_file] [-W] [-c untrusted_comment] [-t trusted_comment] -m file [file ...]
+minisign -V [-H] [-x sig_file] [-p pubkey_file | -P pubkey] [-o] [-q] -m file
-G generate a new key pair
--H require input to be prehashed
+-R recreate a public key file from a secret key file
+-C change the password of the secret key
-S sign files
-V verify that a signature is valid for a given file
+-H require input to be prehashed
-l sign using the legacy format
-m <file> file to sign/verify
-o combined with -V, output the file content after verification
--p <pubkeyfile> public key file (default: ./minisign.pub)
+-p <pubkey_file> public key file (default: ./minisign.pub)
-P <pubkey> public key, as a base64 string
--s <seckey> secret key file (default: ~/.minisign/minisign.key)
+-s <seckey_file> secret key file (default: ~/.minisign/minisign.key)
+-W do not encrypt/decrypt the secret key with a password
-x <sigfile> signature file (default: <file>.minisig)
-c <comment> add a one-line untrusted comment
-t <comment> add a one-line trusted comment
-q quiet mode, suppress output
-Q pretty quiet mode, only print the trusted comment
--R recreate a public key file from a secret key file
-f force. Combined with -G, overwrite a previous key pair
-v display version number
@@ -147,7 +150,7 @@ minisign -R -s seckey -p pubkeyfile
Compilation:
-$ zig build -Drelease-safe
+ $ zig build -Drelease-small
Dependencies