Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danieldidiobalsamo/sha256sum_from_scratch
SHA-256 from-scratch implementation in Rust
https://github.com/danieldidiobalsamo/sha256sum_from_scratch
cryptography hashing rust sha256
Last synced: 8 days ago
JSON representation
SHA-256 from-scratch implementation in Rust
- Host: GitHub
- URL: https://github.com/danieldidiobalsamo/sha256sum_from_scratch
- Owner: danieldidiobalsamo
- License: gpl-3.0
- Created: 2022-03-08T18:03:28.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-16T11:06:22.000Z (10 months ago)
- Last Synced: 2024-10-18T09:21:33.360Z (about 1 month ago)
- Topics: cryptography, hashing, rust, sha256
- Language: Rust
- Homepage: https://crates.io/crates/sha256sum_from_scratch
- Size: 65.4 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# About
Rust SHA-256 hash function from scratch implementation that can be called from CLI.
Hash implementation and CLI are two separated crates.# How to launch (recommended)
Install [Rust](https://www.rust-lang.org/tools/install) and launch:
~~~
cargo install sha256sum_from_scratch
sha256sum_from_scratch
~~~# Build manually
~~~
cargo run --release sha_256_scratch/sample_files_for_testing/sample.pdf
~~~