| Crates.io | rclonedecrypt |
| lib.rs | rclonedecrypt |
| version | 0.2.29 |
| created_at | 2025-10-11 16:45:17.80443+00 |
| updated_at | 2026-01-22 08:29:49.407145+00 |
| description | CLI to decrypt rclone-encrypted files |
| homepage | |
| repository | https://github.com/pepa65/rclonedecrypt |
| max_upload_size | |
| id | 1878349 |
| size | 41,048 |
CLI to decrypt rclone-encrypted files
git clone https://github.com/pepa65/rclonedecrypt
cd rclonedecrypt
cargo rel # The binary gets symlinked to `rclonedecrypt`
./test.sh
cargo rel (gives standalone static binary)cargo build --release --target x86_64-apple-darwincargo build --release --target aarch64-apple-darwinmingw-w64): cargo build --release --target x86_64-pc-windows-gnuCheck the Releases page
rclonedecrypt 0.2.29 - CLI to decrypt rclone-encrypted files
USAGE: rclonedecrypt [OPTIONS] --output <FILE> --password <PASSWORD> --salt <SALT> <FILE>
OPTIONS:
-o, --output <FILE> Output decrypted file
-p, --password <PASSWORD> Encryption password
-s, --salt <SALT> Salt used for encryption
-v, --verbose Enable verbose output
-h, --help Print help
-V, --version Print version
`rclonedecrypt encrypted_file.jpg.bin -o decrypted_file.jpg -p 'PASSWORD' -s 'SALT'
src/main.rs: Main application entry pointsrc/cli.rs: Command-line interface definitionsrc/decrypt.rs: Core decryption logicsrc/error.rs: Error types and handlingThis project is licensed under the MIT License - see the LICENSE file for details.