Rocky_Mountain_Vending/.pnpm-store/v10/files/46/95b22bffeabd073ed5b0c3a4b36cfcb06a5c58a661074e5f69c1260737fa77df39ccd365936fbe7aed9f03c13d924c56d76dcfbf165e2fb0157f6fe08f447b
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

24 lines
636 B
Text

import { Checksum } from "@smithy/types";
/**
* Implements CRC-64/NVME checksum algorithm.
*
* This class provides CRC-64 checksum calculation using the NVMe polynomial (0x9a6c9329ac4bc9b5).
* It uses an 8-slice lookup table for efficient computation.
*
* @example
* ```typescript
* const checksum = new Crc64Nvme();
* checksum.update(new Uint8Array([1, 2, 3]));
* const result = await checksum.digest();
* ```
*
* @public
*/
export declare class Crc64Nvme implements Checksum {
private c1;
private c2;
constructor();
update(data: Uint8Array): void;
digest(): Promise<Uint8Array>;
reset(): void;
}