Skip to content

Instantly share code, notes, and snippets.

View tsteinholz's full-sized avatar

тнσмαѕ ѕтєιинσℓz tsteinholz

View GitHub Profile
" vim.rc by Thomas Steinholz
" ------------------------------------------------------------------------------
" ViM!
" <Leader> : Space Key
" F2 : Toggle Paste Mode
" F3 : Undo Tree
" F4 : Toggle Spell Check
" F8 : New Tab
" F9 : Previous Tab
" F10 : Next Tab
@dreikanter
dreikanter / encrypt_openssl.md
Last active January 20, 2026 07:55 — 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: