Encrypt/Decrypt a Text File
Encrypt/Decrypt a Text File
- Subject: Encrypt/Decrypt a Text File
- From: Eric Geoffroy <email@hidden>
- Date: Tue, 29 Jul 2014 10:19:24 -0700
OpenSSL is on every Mac and lots of Unix distros. Nothing to install. Super easy. Super secure.
This is the basic command to encrypt a file:
openssl aes-256-cbc -a -salt -in secrets.txt -out secrets.txt.enc
Decrypt-
openssl aes-256-cbc -d -a -in secrets.txt.enc -out secrets.txt.new
There’s a nice tutorial here:
- Eric |
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden