#![deny(missing_docs)]
#![allow(rustdoc::bare_urls)]
#![allow(rustdoc::invalid_html_tags)]
mod aliases;
pub mod error;
mod has_hash;
mod hash;
pub mod hash_type;
pub use aliases::*;
pub use encode::{ai_hash_decode, ai_hash_decode_unchecked, ai_hash_encode};
pub use has_hash::HasHash;
pub use hash::*;
pub use hash_b64::*;
pub use hash_type::HashType;
pub use hash_type::PrimitiveHashType;
#[cfg(not(feature = "string-encoding"))]
pub mod encode_raw;
#[cfg(feature = "string-encoding")]
pub mod encode;
#[cfg(feature = "string-encoding")]
pub mod hash_b64;
#[cfg(feature = "fixturators")]
pub mod fixt;
#[cfg(feature = "hashing")]
mod hash_ext;
#[cfg(feature = "serialized-bytes")]
mod hashable_content;
#[cfg(feature = "serialized-bytes")]
mod hashed;
#[cfg(feature = "serialized-bytes")]
mod ser;
#[cfg(feature = "hashing")]
pub use hash_ext::MAX_HASHABLE_CONTENT_LEN;
#[cfg(feature = "serialized-bytes")]
pub use hashable_content::*;
#[cfg(feature = "serialized-bytes")]
pub use hashed::*;
#[cfg(feature = "serialized-bytes")]
pub type AiHashOf<C> = AiHash<<C as HashableContent>::HashType>;