VideoChain-API / src /utils /validators /computeSecretFingerprint.mts
jbilcke-hf's picture
jbilcke-hf HF staff
small clean-up
955ce73
raw
history blame contribute delete
240 Bytes
import { computeSha256 } from "./computeSha256.mts"
const secretFingerprint = `${process.env.VC_SECRET_FINGERPRINT || ""}`
export function computeSecretFingerprint(input: string) {
return computeSha256(`${secretFingerprint}_${input}`)
}