Module simd_adler32::read[][src]

Reader-based hashing.

Example

use std::io::Cursor;
use simd_adler32::read::adler32;

let mut reader = Cursor::new(b"Hello there");
let hash = adler32(&mut reader).unwrap();

println!("{}", hash) // 800813569

Functions

adler32

Compute Adler-32 hash on reader until EOF.