solana_program/
hash.rs

1//! Hashing with the [SHA-256] hash function, and a general [`Hash`] type.
2//!
3//! [SHA-256]: https://en.wikipedia.org/wiki/SHA-2
4//! [`Hash`]: struct@Hash
5
6pub use {
7    solana_hash::{Hash, ParseHashError, HASH_BYTES},
8    solana_sha256_hasher::{extend_and_hash, hash, hashv, Hasher},
9};