Forrest logo
back to context overview

minisign

List of commands for minisign:

  • minisign:tldr:8f278 minisign: Generate a new keypair at the default location.
    $ minisign -G
    try on your machine
    explain 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 machine
    explain this command
  • minisign:tldr:c9d0f minisign: Sign a file.
    $ minisign -Sm ${filename}
    try on your machine
    explain 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 machine
    explain 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 machine
    explain this command
back to context overview