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: about 1 year 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 4 years ago)
- Default Branch: master
- Last Pushed: 2024-12-20T09:44:11.000Z (over 1 year ago)
- Last Synced: 2025-03-28T16:40:13.751Z (about 1 year ago)
- Topics: cryptography, hashing, rust, sha256
- Language: Rust
- Homepage: https://crates.io/crates/sha256sum_from_scratch
- Size: 73.2 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
~~~