ecrypt (Easy Encryption)

CLI tool to easily encrypt and decrypt files or directories.

The encryption/decryption process and the source code is transparent and easily understandable, see the Under the Hood section.

Usage

Install

The simplest way is: cargo install ecrypt

To build from source, you can clone the repo and build the release binary:

git clone https://github.com/tirax-lab/ecrypt cd ecrypt cargo build --release sudo mv target/release/ecrypt /usr/local/bin

Use --help after any subcommand(e.g. enc for encrypt and dec for decrypt) to view all options. For example directory encryption supports the -c/--compress flag for tar gunzip compression.

Encrypt a file or directory

$ ecrypt enc README.md Encryption password: [2023-01-23T20:37:31Z INFO ecrypt::enc] Writing encrypted data of file "README.md" to "README.md.encrypted" [2023-01-23T20:37:31Z WARN ecrypt::enc] The unencrypted file 'README.md' remains on disk, you can remove it manually or run ecrypt with the --remove/-r flag

A file README.md.encrypted will have been created with the encrypted contents.

Decrypt a file

$ ecrypt dec README.md.encrypted Decryption password: [2023-01-23T20:39:11Z INFO ecrypt::dec] Writing decrypted data of file "README.md.encrypted" to "README.md.decrypted"

A file README.md.decrypted will have been created with the decrypted contents.

Decrypt a directory

$ ecrypt dec directory.encrypted_dir Decryption password: [2023-01-23T20:41:33Z INFO ecrypt::dec] Writing decrypted data of file "directory.encrypted_dir" to "directory.decrypted" [2023-01-23T20:41:33Z INFO ecrypt::dec] Unpacking tarball of decrypted directory: 'directory.decrypted'

This will create 2 outputs: a directory.decrypted file which is the decrypted tarball, which has been unpacked to produce the directory

Under the Hood

This section documents how ecrypt handles file/directory encryption and decryption so you can evaluate if it is suitable for your security needs. For background see the article on Rust file encryption by Sylvian Kerkour, the author of Black Hat Rust:

File Encryption

File Decryption

Directory Encryption

Directory Decryption