Command-line envelope encryption with secret-keeper

This program provides encryption and decryption using Secret Keeper

Encrypt a file with choice of SecretKeeper

and choice of encrypting cipher

Syntax:

``` # Encrypt file $ encrypt enc -o OUT [ -k KEEPER ] [ -c CIPHER ] FILE

# Decrypt file $ encrypt dec -o OUT [ -k KEEPER ] [ -c CIPHER ] FILE

# View key envelope $ encrypt key view [ -k KEEPER ] FILE ```

Keeper URIs

If a secret keeper uri is not specified, default env: is used.

Secret keepers:

Ciphers

Default cipher is LZ4XChaCha20Poly1305, which combines LZ4 compression with XChaCha20-Poly1305. (Cipher algorithm implemented by RustCrypto

Cipher options (-c flag):

Random number generation

File nonces and keys are generated with the platform's OS CSRNG, using the rand crate.

Building

cargo build

If you build from source, the binary should be in secret-keeper/target/{debug,release}/encrypt