My personal cheatsheets for Navi
cheatsheets navi
0
fork

Configure Feed

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

Add kryptor cheat

Add encryption cheats

+22
+22
encrypting/kryptor.cheat
··· 1 + % kryptor 2 + 3 + # Encrypt a file using your private key 4 + kryptor -e "<input_file>" 5 + 6 + # Encrypt a file using a passphrase 7 + kryptor -e -p "<input_file>" 8 + 9 + # Encrypt a file for a recipient using their public key 10 + kryptor -e -y <recipient_public_key> "<input_file>" 11 + 12 + # Encrypt a directory using your private key 13 + kryptor -e "<input_directory>" 14 + 15 + # Encrypt a directory using a passphrase 16 + kryptor -e -p "<input_directory>" 17 + 18 + # Encrypt a directory for a recipient using their public key 19 + kryptor -e -y <recipient_public_key> "<input_directory>" 20 + 21 + $ input_file: fd -tf --maxdepth 1 . | fzf 22 + $ input_directory: fd -td --maxdepth 1 . | fzf