Crates.io | cargo-cryptile |
lib.rs | cargo-cryptile |
version | 0.2.0 |
source | src |
created_at | 2022-10-26 10:40:07.442472 |
updated_at | 2022-10-30 21:12:19.100778 |
description | A CLI Tool to Encrypt and Decrypt files with a secure password. |
homepage | |
repository | https://github.com/AbhiSinha08/cryptile/tree/main/cargo-cryptile |
max_upload_size | |
id | 697699 |
size | 63,540 |
cargo-cryptile is a CLI tool for encrypting and decrypting files with a password.
The file are encrypted using AES256 secure encryption with almost zero overhead.
You can securely save your encryption passwords using set
command to quickly encrypt and decrypt files using them.
cargo install cargo-cryptile
Just run cargo cryptile --help
for a list of available commands and options.
Encrypt a file with a password:
cargo cryptile encrypt "file.txt" -p <password>
Decrypt a file with a password and remove the encrypted file:
cargo cryptile decrypt "file.txt.cryptile" -p <password> --replace
Set a master password to use:
cargo cryptile set -m
Save a password along with an identifier to use:
cargo cryptile set -p
Encrypt a file using master password:
cargo cryptile encrypt file.txt -m
Decrypt a file using an identifier of a saved password:
cargo cryptile decrypt file.txt.cryptile -s my_pass