Important
This repository has been merged into https://github.com/sorairolake/scryptenc-rs, so it is archived.
rscrypt (scryptenc-cli
) is a command-line utility for
encrypt and decrypt files.
This is a Rust implementation of scrypt(1)
.
cargo install scryptenc-cli
The release page contains pre-built binaries for Linux, macOS and Windows.
Please see BUILD.adoc.
Encrypt a file:
rscrypt enc data.txt data.txt.scrypt
Decrypt a file:
rscrypt dec data.txt.scrypt data.txt
Output as a human-readable string:
rscrypt info data.txt.scrypt
Output:
Parameters used: N = 1024; r = 8; p = 1;
Decrypting this file requires at least 1 MiB of memory.
Output as JSON:
rscrypt info -j data.txt.scrypt | jq
Output:
{
"N": 1024,
"r": 8,
"p": 1
}
--generate-completion
option generates shell completions to stdout.
The following shells are supported:
bash
elvish
fish
nushell
powershell
zsh
Example:
rscrypt --generate-completion bash > rscrypt.bash
Please see the following:
Please see CHANGELOG.adoc.
Please see CONTRIBUTING.adoc.
This program is inspired by the scrypt encryption utility, and built on top
of the scryptenc
crate.
Copyright © 2022–2024 Shun Sakai (see AUTHORS.adoc)
- This program is distributed under the terms of the GNU General Public License v3.0 or later.
- Some files are distributed under the terms of the Creative Commons Attribution 4.0 International Public License.
This project is compliant with version 3.0 of the REUSE Specification. See copyright notices of individual files for more details on copyright and licensing information.