Created
January 28, 2019 11:43
-
-
Save vlado/8ac767b1b173f5e80b8ef9b991ad7cf6 to your computer and use it in GitHub Desktop.
Encrypt/Decrypt file on macOs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Encrypt | |
openssl aes-256-cbc -salt -in filename.ext -out filename.enc | |
# Decrypt | |
openssl aes-256-cbc -d -salt -in filename.enc -out filename.ext |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment