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>
15 lines
443 B
Text
15 lines
443 B
Text
import { ChecksumAlgorithm } from "./constants";
|
|
export const CLIENT_SUPPORTED_ALGORITHMS = [
|
|
ChecksumAlgorithm.CRC32,
|
|
ChecksumAlgorithm.CRC32C,
|
|
ChecksumAlgorithm.CRC64NVME,
|
|
ChecksumAlgorithm.SHA1,
|
|
ChecksumAlgorithm.SHA256,
|
|
];
|
|
export const PRIORITY_ORDER_ALGORITHMS = [
|
|
ChecksumAlgorithm.SHA256,
|
|
ChecksumAlgorithm.SHA1,
|
|
ChecksumAlgorithm.CRC32,
|
|
ChecksumAlgorithm.CRC32C,
|
|
ChecksumAlgorithm.CRC64NVME,
|
|
];
|