1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-30 21:21:11 +02:00

[crunchyroll] Remove unused class

This commit is contained in:
Jaime Marquínez Ferrándiz 2015-03-21 12:18:33 +01:00
parent a7d9ded45d
commit 85698c5086

View File

@ -23,7 +23,6 @@
)
from ..aes import (
aes_cbc_decrypt,
inc,
)
@ -102,13 +101,6 @@ def obfuscate_key(key):
key = obfuscate_key(id)
class Counter:
__value = iv
def next_value(self):
temp = self.__value
self.__value = inc(self.__value)
return temp
decrypted_data = intlist_to_bytes(aes_cbc_decrypt(data, key, iv))
return zlib.decompress(decrypted_data)