Add support for widevine-proxy.drm.technology #9
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Could the follow code be added to CDRM-Project/custom_functions/decrypt/api_decrypt.py as base64 isn't use and an array of numeric values are?
in find_license_challenge
licensenumeric added to keywords
with this code added before data[key] = new_value
if key.lower() == 'licensenumeric':
new_value = base64.b64decode(new_value)
chall=''
for i in new_value: chall+=str(i)+','
new_value = chall[:-1]
Correction:
license_request_data added to keywords
if key.lower() == 'license_request_data':
new_value = base64.b64decode(new_value)
chal=''
for i in new_value: chal+=str(i)+','
new_value= [ chal[:-1] ]
Sorry this would be better since it's not a json string:
chal=[]
for i in new_value: chal.append(i)
new_value= chal