···11-% rsign
22-33-# Sign a file with a trusted comment
44-rsign sign "<input_file>" -t "<trusted_comment>"
55-66-# Verify a file with my public key
77-rsign verify "<input_file>" -P <sapphic_public_key>
88-99-# Verify a file with my public key, with a different named signature file
1010-rsign verify "<input_file>" -P <sapphic_public_key> -x "<signature_file>"
1111-1212-# Verify a file with someone else's public key
1313-rsign verify "<input_file>" -P <public_key>
1414-1515-# Verify a file with someone else's public key, with a different named signature file
1616-rsign verify "<input_file>" -P <public_key> -x "<signature_file>"
1717-1818-$ sapphic_public_key: echo RWRGdAWJCSQzseElKbOIcuDvVwxR+oKzsy8FXX3Wsx0I98MA6bTVcGaL
1919-2020-$ input_file: fd -tf --maxdepth 1 . | fzf
2121-$ signature_file: fd -tf --maxdepth 1 --glob "*.minisig" . | fzf