Skip to content

Instantly share code, notes, and snippets.

View dreikanter's full-sized avatar

Alex Musayev dreikanter

View GitHub Profile
@dreikanter
dreikanter / encrypt_openssl.md
Last active March 19, 2024 08:28 — forked from crazybyte/encrypt_openssl.txt
File encryption using OpenSSL

Symmetic encryption

For symmetic encryption, you can use the following:

To encrypt:

openssl aes-256-cbc -salt -a -e -in plaintext.txt -out encrypted.txt

To decrypt:

@dreikanter
dreikanter / introrx.md
Created October 10, 2015 10:28 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing