https://github.com/andrewmilson/sha3-const
const fn implementation of the SHA-3 family of hash functions
https://github.com/andrewmilson/sha3-const
Last synced: about 2 months ago
JSON representation
const fn implementation of the SHA-3 family of hash functions
- Host: GitHub
- URL: https://github.com/andrewmilson/sha3-const
- Owner: andrewmilson
- Created: 2022-05-20T07:59:13.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-08-18T02:11:30.000Z (almost 3 years ago)
- Last Synced: 2025-11-17T14:14:49.248Z (7 months ago)
- Language: Rust
- Homepage:
- Size: 32.2 KB
- Stars: 4
- Watchers: 1
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sha3-const
[](https://github.com/andrewmilson/sha3-const/actions)
[](https://crates.io/crates/sha3-const)
[](https://docs.rs/sha3-const)
`const fn` implementation of the SHA-3 family of hash and extendable-output functions (inspired by [sha2-const](https://crates.io/crates/sha2-const)). This crate allows you to use use the Sha3 hash functions as constant expressions in rust. For all other usages, the [sha3](https://crates.io/crates/sha3) crate includes more optimized implementations of these hash functions.
Based on the [Keccak specification implementations](https://keccak.team/keccak_specs_summary.html).