atlas-program 3.0.0

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

#[cfg(not(target_os = "atlas"))]
pub use atlas_sha256_hasher::Hasher;
pub use {
    atlas_hash::{Hash, ParseHashError, HASH_BYTES},
    atlas_sha256_hasher::{hash, hashv},
};