Version 1.0.0
See all crc64fast's items
crc64fast
SIMD-accelerated CRC-64-ECMA computation (similar to crc32fast).
crc32fast
use crc64fast::Digest; let mut c = Digest::new(); c.write(b"hello "); c.write(b"world!"); let checksum = c.sum64(); assert_eq!(checksum, 0x8483_c0fa_3260_7d61);
Represents an in-progress CRC-64 computation.