libvctrl_core 0.1.1

Reference implementations of the libvctrl contracts (in-memory store, SHA-512 hasher, binary codec)
Documentation
1
2
3
4
5
6
//! Cryptographic hash function implementations.
//!
//! Currently provides only [`Sha512Hasher`].

pub mod sha512;
pub use sha512::Sha512Hasher;