Popularity
0.6
Declining
Activity
0.0
Stable
6
2
1
Description
Command line application for calculating the hash value of a file. Rash uses the RustCrypto collection of libraries.
Programming language: Rust
License: Apache License 2.0
Tags:
Commandline
Application
Hash
Crypto
Md5
Applications written in Rust
System tools
Utilities
Digest
Sha3
Rash alternatives and similar packages
Based on the "Utilities" category.
Alternatively, view Rash alternatives based on common mentions on social networks and blogs.
-
emplace
๐ฉโโค๏ธโ๐โ๐ฉ Synchronize installed packages on multiple machines -
Brink
Brink is a domain specific language for linking and composing binary files. -
IFTTT Webhook
Simple async library for triggering IFTTT events using webhooks.
Access the most powerful time series database as a service
Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.
Promo
www.influxdata.com
Do you think we are missing an alternative of Rash or a related project?
Popular Comparisons
README
Rash
A file hashing tool written in Rust
Command line application for calculating the hash value of a file. Rash uses the RustCrypto collection of libraries, therefore currently supports
- md5
- SHA1
- Whirlpool
- Ripemd160
- Blake2b
- Blake2S
- SHA2-256 (truncated to 224 and 256)
- SHA2-512 (truncated to 224, 256, 384 and 512)
- SHA3 (truncated to 224, 256, 384 and 512)
- Groestl
- Shake (256 and 512 variants)
- Keccak (truncated to 224, 256, 384 and 512)
Usage
The Keccak algorithm is accessed with the sha3 subcommand.
USAGE:
rash [FILE] <SUBCOMMAND>
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
ARGS:
<FILE> File to calculate the hash of
SUBCOMMANDS:
blake2b BLAKE2b algorithm
blake2s BLAKE2s algorithm
help Prints this message or the help of the given subcommand(s)
md5 MD5 algorithm
ripemd160 Ripemd160 algorithm
sha1 SHA1 algorithm
sha2 SHA2 algorithms
sha3 SHA3 algorithms
shake Shake algorithm
whirlpool Whirlpool algorithm
Install
Via cargo:
cargo install rash
Arch Linux: AUR
Development version:
git clone https://github.com/themadprofessor/rash.git && cd rash && cargo install
Examples
rash md5 Readme.md
rash sha3 Readme.md
rash blake2b -l 64 Readme.md