man i am a moron

This commit is contained in:
cirroskais 2024-08-29 06:46:12 -04:00
parent 1681d04a4b
commit 2590817cc1
No known key found for this signature in database
GPG key ID: 5FC73EBF2678E33D

View file

@ -7,7 +7,7 @@ import minio, { BUCKET } from './minio';
const processing = new Set();
export function createSignature(opts: string) {
return createHmac('SHA1', env.THUMBOR_KEY || 'development')
return createHmac('SHA1', env.THUMBOR_SECRET || 'development')
.update(opts)
.digest();
}