Skip to content

Instantly share code, notes, and snippets.

@rkotov93
Created April 27, 2021 16:53
Show Gist options
  • Save rkotov93/7d574747f394ca941c55f9996cdbcb7c to your computer and use it in GitHub Desktop.
Save rkotov93/7d574747f394ca941c55f9996cdbcb7c to your computer and use it in GitHub Desktop.
encrypt() {
openssl enc -des3 -salt -in $1 -out $2
}
decrypt() {
openssl enc -d -des3 -in $1 -out $2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment