_/
_/_/_/ _/ _/_/ _/ _/ _/_/_/ _/_/_/_/
_/ _/_/ _/ _/ _/ _/ _/
_/ _/ _/ _/ _/ _/ _/
_/_/_/ _/ _/_/_/ _/_/_/ _/_/
_/ _/
_/_/ _/
Simple CLI tool to encrypt / decrypt text.
Installation
go get github.com/btb55/crypt
go install
Usage example
Encrypt:
crypt -e -k mykey 'secret text'
// output
-------------------------------------------
26vBzKOIOpg06qGluKzJuFmBcX2_Rt7tSMRUF3-LHo0
-------------------------------------------
Decrypt:
crypt -d -k mykey 26vBzKOIOpg06qGluKzJuFmBcX2_Rt7tSMRUF3-LHo0
// output
-----------
secret text
-----------