We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec9ba2a commit 4273d74Copy full SHA for 4273d74
CHANGELOG.md
@@ -1,5 +1,6 @@
1
## 0.20.0 (TBD)
2
3
+- Added SHA-256 and SHA-512 hash function wrappers ([#692](https://github.com/0xMiden/crypto/pull/692)).
4
- Added `+ Sync` bound to `StorageError` and `LargeSmtError` ([#680](https://github.com/0xMiden/crypto/pull/680)).
5
-
6
## 0.19.2 (2025-12-04)
miden-crypto/src/hash/mod.rs
@@ -8,6 +8,9 @@ pub mod blake;
8
/// Keccak hash function.
9
pub mod keccak;
10
11
+/// SHA-2 hash functions (SHA-256 and SHA-512).
12
+pub mod sha2;
13
+
14
/// Poseidon2 hash function.
15
pub mod poseidon2 {
16
pub use super::algebraic_sponge::poseidon2::Poseidon2;
0 commit comments