rialo-s-program 0.5.0-alpha.0

Solana Program
1
2
3
4
5
6
7
//! Hashing with the [SHA-256] hash function, and a general [`Hash`] type.
//!
//! [SHA-256]: https://en.wikipedia.org/wiki/SHA-2
//! [`Hash`]: struct@Hash

pub use rialo_hash::{Hash, ParseHashError, HASH_BYTES};
pub use rialo_s_sha256_hasher::{extend_and_hash, hash, hashv, Hasher};