···11+% kryptor
22+33+# Encrypt a file using your private key
44+kryptor -e "<input_file>"
55+66+# Encrypt a file using a passphrase
77+kryptor -e -p "<input_file>"
88+99+# Encrypt a file for a recipient using their public key
1010+kryptor -e -y <recipient_public_key> "<input_file>"
1111+1212+# Encrypt a directory using your private key
1313+kryptor -e "<input_directory>"
1414+1515+# Encrypt a directory using a passphrase
1616+kryptor -e -p "<input_directory>"
1717+1818+# Encrypt a directory for a recipient using their public key
1919+kryptor -e -y <recipient_public_key> "<input_directory>"
2020+2121+$ input_file: fd -tf --maxdepth 1 . | fzf
2222+$ input_directory: fd -td --maxdepth 1 . | fzf