Skip to content

Instantly share code, notes, and snippets.

@anthony2025
Last active March 28, 2020 04:04
Show Gist options
  • Save anthony2025/6c3a490645196bbccb418e974338f9f6 to your computer and use it in GitHub Desktop.
Save anthony2025/6c3a490645196bbccb418e974338f9f6 to your computer and use it in GitHub Desktop.
# 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