mirror of
				https://github.com/devine-dl/pywidevine.git
				synced 2025-11-04 03:44:50 +00:00 
			
		
		
		
	Cdm: Use reversed OEMCrypto request id formula for Android devices
It's effectively 8 random bytes with a counter thats right-padded (to 8 bytes). This counter is the Session number.
This commit is contained in:
		
							parent
							
								
									838df7c22b
								
							
						
					
					
						commit
						2af929a83d
					
				@ -279,7 +279,10 @@ class Cdm:
 | 
			
		||||
        except ValueError:
 | 
			
		||||
            raise InvalidLicenseType(f"License Type {type_!r} is invalid")
 | 
			
		||||
 | 
			
		||||
        request_id = get_random_bytes(16)
 | 
			
		||||
        if self.device_type == Device.Types.ANDROID:
 | 
			
		||||
            request_id = get_random_bytes(8) + session.number.to_bytes(8, "little")
 | 
			
		||||
        else:
 | 
			
		||||
            request_id = get_random_bytes(16)
 | 
			
		||||
 | 
			
		||||
        license_request = LicenseRequest()
 | 
			
		||||
        license_request.type = LicenseRequest.RequestType.Value("NEW")
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user