hash_wasm_rs/lib.rs
1pub mod hash;
2
3pub mod prelude {
4 pub use crate::hash::{
5 blake3::blake3_hash,
6 file_render::{GetFileResult, get_data_as_bytes, get_file_uint8array_and_blob},
7 hash_result::HashResult,
8 hash_type::HashType,
9 hasher_wrapper::{HasherWrapper, HasherWrapperConfig},
10 md5::md5_hash,
11 sha_256::sha_256_hash,
12 sha_512::sha2_512_hash,
13 sha3_256::sha3_256_hash,
14 sha3_512::sha3_512_hash,
15 };
16}