Crates.io | nutek-cipher |
lib.rs | nutek-cipher |
version | 2.0.7 |
source | src |
created_at | 2023-02-05 13:12:14.922154 |
updated_at | 2024-08-17 02:36:01.0047 |
description | Encrypt and decrypt files and text with ease |
homepage | |
repository | https://github.com/NutekSecurity/nutek-cipher |
max_upload_size | |
id | 777065 |
size | 67,438 |
Encrypt and decrypt files and text with ease.
cargo install nutek-cipher
or download binary for your OS type from GitHub release page
File or text (from standard input) encryption for modern days
Usage: nutek-cipher [OPTIONS]
Options:
-e, --encrypt encrypt
-d, --decrypt decrypt
-i, --input-file <INPUT_FILE> input file
-o, --output-file <OUTPUT_FILE> output file
--sum-codes <SUM_CODES> separated by colon ":" paths to key_path:nonce_path files that will be merged into codes file
--codes-file <CODES_FILE> codes from one file in format: key=xxx nonce=yyy
--display-codes display codes loaded from file using --codes-file flag and then exit
-r random key and nonce
--save-codes save key and nonce to separete codes file
--stdout print result to stdout
-h, --help Print help
-V, --version Print version
echo "hahaha" | nutek-cipher --stdout -e -r --save-codes
This will encrypt text hahaha with random key and nonce and save your codes to your user Downloads folder
This program uses AES-GCM-SIV cipher with 32 bytes key and 12 bytes nonce. It's enough for home use.
Apache-2.0 or MIT