cryptenv

Rust

A transparent environment variables decryptor.

Install

sh cargo install cryptenv

Usage

Prepare encrypted environment variable

```sh cryptenv --data <(echo -n "THIS IS TOP SECRET")

password? # input password

cryptenv://ndDGOi3AUgcB4XOiiimRmfY8lEvoBtYZF8mrappszvuhyjAqtqt2IxIf2iFXx+If

```

use this URI string for environment variable value.

```sh

~/.bashrc

TOP_SECRET=cryptenv://ndDGOi3AUgcB4XOiiimRmfY8lEvoBtYZF8mrappszvuhyjAqtqt2IxIf2iFXx+If ```

Run command with crypted secrets

```sh cryptenv -- env | grep TOP_SECRET

password? # input password

TOP_SECRET=THIS IS TOP SECRET

```

Annoying to type password everytime?

  1. 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 $@ }

  2. then use cryptenv-save instead of cryptenv

    sh cryptenv-save -- env | grep TOP_SECRET