
minisign
List of commands for minisign:
-
minisign:tldr:8f278 minisign: Generate a new keypair at the default location.$ minisign -Gtry on your machineexplain this command
-
minisign:tldr:b4e63 minisign: Verify a file and the trusted comments in its signature, specifying a public key as a Base64 encoded literal.$ minisign -Vm ${filename} -P "${public_key_base64}"try on your machineexplain this command
-
minisign:tldr:c9d0f minisign: Sign a file.$ minisign -Sm ${filename}try on your machineexplain this command
-
minisign:tldr:e52cd minisign: Verify a file and the trusted comments in its signature using the specified public key file.$ minisign -Vm ${filename} -p ${path-to-publickey-pub}try on your machineexplain this command
-
minisign:tldr:f0827 minisign: Sign a file, adding a trusted (signed) and an untrusted (unsigned) comment in the signature.$ minisign -Sm ${filename} -c "${Untrusted comment}" -t "${Trusted comment}"try on your machineexplain this command