ton3-core
Version:
TON low-level API tools
6 lines (5 loc) • 327 B
TypeScript
declare const crc16: (data: Uint8Array | number[]) => number;
declare const crc16BytesBe: (data: Uint8Array | number[]) => Uint8Array;
declare const crc32c: (data: Uint8Array | number[]) => number;
declare const crc32cBytesLe: (data: Uint8Array | number[]) => Uint8Array;
export { crc16, crc32c, crc16BytesBe, crc32cBytesLe };