···1818# Encrypt a directory for a recipient using their public key
1919kryptor -e -y <recipient_public_key> "<input_directory>"
20202121+# Decrypt an input that was encrypted with your private key
2222+kryptor -d "<input_file>"
2323+2424+# Decrypt an input that was encrypted with a passphrase
2525+kryptor -d -p "<input_file>"
2626+2727+# Decrypt an input that was encrypted to your public key by someone else
2828+kryptor -d -y <sender_public_key> "<input_file>"
2929+3030+2131$ input_file: fd -tf --maxdepth 1 . | fzf
2232$ input_directory: fd -td --maxdepth 1 . | fzf