Webcatalog License Key Page

Response:

"license_key": "encoded-key", "machine_id": "device-fingerprint" Webcatalog License Key

"license_key": "...", "machine_id": "..." Response: "license_key": "encoded-key"

function decryptLicense(encoded) const data = Buffer.from(encoded, 'base64'); const iv = data.subarray(0, 12); const tag = data.subarray(12, 28); const ciphertext = data.subarray(28); const decipher = crypto.createDecipheriv(ALGORITHM, SECRET_KEY, iv); decipher.setAuthTag(tag); let decrypted = decipher.update(ciphertext); decrypted += decipher.final(); return JSON.parse(decrypted); "machine_id": "device-fingerprint" "license_key": "..."