wvg/python/schemes/RedBee.py
FoxRefire d101caddd4 Refactor: Not to decode licenses in Base64 format
Pywidevine does this without having to do it on the scheme side.
This makes the scheme more concise.
2024-06-06 12:51:23 +09:00

7 lines
233 B
Python

req = json.loads(base64.b64decode(licBody.encode()).decode())
b64challenge = base64.b64encode(challenge).decode()
req['message'] = b64challenge
res = await corsFetch(licUrl, "POST", licHeaders, req, "json")
licence = res['license']