Quantcast
Channel: txt » ssl
Viewing all articles
Browse latest Browse all 2

Encrypt/Decrypt File using OpenSSL in Linux

$
0
0

Works on OS X, Linux, anywhere with OpenSSL installed:

To encrypt a file:


openssl des3 -salt -in infile.txt -out encryptedfile.txt

To decrypt the file:


openssl des3 -d -salt -in encryptedfile.txt -out normalfile.txt

Viewing all articles
Browse latest Browse all 2

Trending Articles