My personal cheatsheets for Navi
cheatsheets navi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add decryption options to kryptor cheat

Lily Hannah 7b9a27ce 8b04e135

+10
+10
encrypting/kryptor.cheat
··· 18 18 # Encrypt a directory for a recipient using their public key 19 19 kryptor -e -y <recipient_public_key> "<input_directory>" 20 20 21 + # Decrypt an input that was encrypted with your private key 22 + kryptor -d "<input_file>" 23 + 24 + # Decrypt an input that was encrypted with a passphrase 25 + kryptor -d -p "<input_file>" 26 + 27 + # Decrypt an input that was encrypted to your public key by someone else 28 + kryptor -d -y <sender_public_key> "<input_file>" 29 + 30 + 21 31 $ input_file: fd -tf --maxdepth 1 . | fzf 22 32 $ input_directory: fd -td --maxdepth 1 . | fzf