securityos/node_modules/next/dist/shared/lib/fnv1a.d.ts

14 lines
335 B
TypeScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
declare const FNV_PRIMES: {
readonly 32: bigint;
readonly 64: bigint;
readonly 128: bigint;
readonly 256: bigint;
readonly 512: bigint;
readonly 1024: bigint;
};
export default function fnv1a(inputString: string, { size, seed, }?: {
size?: keyof typeof FNV_PRIMES;
seed?: number;
}): bigint;
export {};