[][src]Crate crc64fast

crc64fast

SIMD-accelerated CRC-64-ECMA computation (similar to crc32fast).

Usage

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);

Structs

Digest

Represents an in-progress CRC-64 computation.