pub fn rapidhash_file_seeded(data: &mut File, seed: u64) -> Result<u64>
Expand description
Rapidhash a file, matching the C++ implementation, with a custom seed.
This method will check the metadata for a file length, and then stream the file with a BufReader to compute the hash. This avoids loading the entire file into memory.