hash-wasm-rs 0.1.0

A WebAssembly library for computing file hashes, built with Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod hash;

pub mod prelude {
    pub use crate::hash::{
        blake3::blake3_hash,
        file_render::{GetFileResult, get_data_as_bytes, get_file_uint8array_and_blob},
        hash_result::HashResult,
        hash_type::HashType,
        hasher_wrapper::{HasherWrapper, HasherWrapperConfig},
        md5::md5_hash,
        sha_256::sha_256_hash,
        sha_512::sha2_512_hash,
        sha3_256::sha3_256_hash,
        sha3_512::sha3_512_hash,
    };
}