Expand description
Hashing and key derivation primitives for Tangle Blueprints.
Provides feature-gated access to common cryptographic hash functions and KDFs:
| Feature | Function(s) |
|---|---|
sha2-hasher | sha2_256, sha2_512 |
sha3-hasher | keccak_256 |
blake3-hasher | blake3_256 |
kdf-hkdf | kdf::hkdf_sha256 |
kdf-argon2 | kdf::argon2id_derive, kdf::argon2id_derive_with |
Modules§
- kdf
- Key derivation functions (HKDF, Argon2id).
Functions§
- blake3_
256 - Compute BLAKE3-256 hash of
data. - keccak_
256 - Compute Keccak-256 hash of
data. - sha2_
256 - Compute SHA2-256 hash of
data. - sha2_
512 - Compute SHA2-512 hash of
data.