UNPKG

@aws-crypto/crc32c

Version:

Pure JS implementation of CRC32-C https://en.wikipedia.org/wiki/Cyclic_redundancy_check

8 lines (7 loc) 212 B
export declare function crc32c(data: Uint8Array): number; export declare class Crc32c { private checksum; update(data: Uint8Array): this; digest(): number; } export { AwsCrc32c } from "./aws_crc32c";