VideoChain-API / src /utils /computeSecretFingerprint.mts
jbilcke-hf's picture
jbilcke-hf HF staff
test with whisper cpp (warning: might break the prod server)
4ddd98f
raw
history blame
240 Bytes
import { computeSha256 } from "./computeSha256.mts"
const secretFingerprint = `${process.env.VC_SECRET_FINGERPRINT || ""}`
export function computeSecretFingerprint(input: string) {
return computeSha256(`${secretFingerprint}_${input}`)
}