cryptenv
A transparent environment variables decryptor.
sh
cargo install cryptenv
```sh cryptenv --data <(echo -n "THIS IS TOP SECRET")
```
use this URI string for environment variable value.
```sh
TOP_SECRET=cryptenv://ndDGOi3AUgcB4XOiiimRmfY8lEvoBtYZF8mrappszvuhyjAqtqt2IxIf2iFXx+If ```
```sh cryptenv -- env | grep TOP_SECRET
```
create this function on your ~/.bashrc
sh
function cryptenv-save() {
local varname=CRYPTENV_PASSWORD
if [ ! -v $varname ];then
read -s -p 'password? ' $varname
echo
export $varname
fi
cryptenv --password-from $varname $@
}
then use cryptenv-save
instead of cryptenv
sh
cryptenv-save -- env | grep TOP_SECRET