Openssl command

From Teknologisk videncenter
Revision as of 13:29, 14 November 2024 by Heth (talk | contribs) (Created page with "[Encryption/decryption of file] <source lang=bash> # Encryption example enc -aes-128-cbc -k Password1 -pbkdf2 -e -in GHOST.c -out G3.out #decryption example enc -aes-128-cbc...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

[Encryption/decryption of file]

# Encryption example
enc -aes-128-cbc -k Password1 -pbkdf2 -e -in GHOST.c -out G3.out

#decryption example
enc -aes-128-cbc -k Password1 -pbkdf2 -d -in G3.out -out G3.org
{{Category:Linux]]