text-to-panorama / src /lib /computeSecretFingerprint.ts
jbilcke-hf's picture
jbilcke-hf HF staff
working on the censorship module
2f436dd
raw
history blame contribute delete
230 Bytes
import { computeSha256 } from "./computeSha256"
const secretFingerprint = `${process.env.FINGERPRINT_KEY || ""}`
export function computeSecretFingerprint(input: string) {
return computeSha256(`${secretFingerprint}_${input}`)
}