ai-tube / src /lib /computeSecretFingerprint.ts
jbilcke-hf's picture
jbilcke-hf HF staff
🍿
1f122c3
raw
history blame
No virus
230 Bytes
import { computeSha256 } from "./computeSha256"
const secretFingerprint = `${process.env.FINGERPRINT_KEY || ""}`
export function computeSecretFingerprint(input: string) {
return computeSha256(`${secretFingerprint}_${input}`)
}