thumbnailing #7

Merged
cirroskais merged 2 commits from development into master 2024-08-29 10:50:51 +00:00
Showing only changes of commit 2590817cc1 - Show all commits

View file

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