fix: use sha1 for hash instead of unsupported xxhash3-xxh64

pull/16271/head
Dax Raad 2026-03-05 22:12:10 -05:00
parent 7e28098365
commit 6733a5a822
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@ import { createHash } from "crypto"
export namespace Hash { export namespace Hash {
export function fast(input: string | Buffer): string { export function fast(input: string | Buffer): string {
return createHash("xxhash3-xxh64").update(input).digest("hex") return createHash("sha1").update(input).digest("hex")
} }
} }