Difference between revisions of "Openssl command"
From Teknologisk videncenter
(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...") |
m |
||
Line 7: | Line 7: | ||
enc -aes-128-cbc -k Password1 -pbkdf2 -d -in G3.out -out G3.org | enc -aes-128-cbc -k Password1 -pbkdf2 -d -in G3.out -out G3.org | ||
</source> | </source> | ||
− | [[Category:Security]] | + | [[Category:Security]][[Category:Linux]] |
Latest revision as of 13:29, 14 November 2024
[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