🐧 E-Z Command-Line Encryption with OpenSSL
November 30 @ 11:30 am - 12:30 pm

At this workshop you’ll learn to create passphrase-protected files using OpenSSL, a command-line program that’s probably already installed on your computer. With this technique you can send encrypted files via email/Dropbox, then share the passphrase with the recipient on a secure channel (e.g., Signal). Useful for avoiding surveillance & data mining!
Save message: echo "My secret message ❤️" > example.txt
Encode: openssl aes-256-cbc -a -in example.txt -out message.enc.txt
Decode: openssl aes-256-cbc -d -a -in message.enc.txt -out plain-text.txt