1//! File hashing: xxHash64, SHA-256, partial reads. 2 3mod md5; 4mod partial; 5mod sha256; 6mod xxhash; 7 8pub use md5::hash_file_md5_hex; 9pub use partial::{partial_digest, PartialOptions}; 10pub use sha256::hash_file_sha256_hex; 11pub use xxhash::hash_file_xxhash64_hex;