Last active
March 28, 2020 04:04
-
-
Save anthony2025/6c3a490645196bbccb418e974338f9f6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# to encrypt: | |
openssl enc -in ./auth.json -aes-256-cbc -pass file:./password -out auth.json.encrypted | |
# to decrypt: | |
openssl enc -d -in ./auth.json.encrypted -aes-256-cbc -pass file:./password -out auth.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment