1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-18 16:31:44 +02:00

add javascript example for truncated signature (#163)

This commit is contained in:
Koen Punt 2024-06-12 17:16:28 +02:00 committed by GitHub
parent fed87524a0
commit e4bf5e93fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,21 @@
import { createHmac } from 'node:crypto';
const KEY = '943b421c9eb07c830af81030552c86009268de4e532ba2ee2eab8247c6da0881'
const SALT = '520f986b998545b4785e0defbc4f3c1203f22de2374a3d53cb7a7fe9fea309c5'
const SIGNATURE_SIZE = 8 // should correspond to IMGPROXY_SIGNATURE_SIZE on the server. Default: 32
const hexDecode = (hex) => Buffer.from(hex, 'hex')
const sign = (salt, target, secret, size) => {
const hmac = createHmac('sha256', hexDecode(secret))
hmac.update(hexDecode(salt))
hmac.update(target)
return Buffer.from(hmac.digest().slice(0, size)).toString('base64url')
}
const path = "/rs:fit:300:300/plain/http://img.example.com/pretty/image.jpg"
const signature = sign(SALT, path, KEY, SIGNATURE_SIZE)
const result = `/${signature}${path}`
console.log(result)