15 lines
401 B
Python
15 lines
401 B
Python
from typing import Optional
|
|
|
|
from Crypto.Random import get_random_bytes
|
|
|
|
from pywidevine.key import Key
|
|
from pywidevine.license_protocol_pb2 import SignedMessage
|
|
|
|
|
|
class Session:
|
|
def __init__(self):
|
|
self.id = get_random_bytes(16)
|
|
self.service_certificate: Optional[SignedMessage] = None
|
|
self.context: dict[bytes, tuple[bytes, bytes]] = {}
|
|
self.keys: list[Key] = []
|