mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Let aes_decrypt_text return bytes instead of unicode
This commit is contained in:
parent
6e74bc41ca
commit
0012690aae
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
import base64
|
||||
from math import ceil
|
||||
|
||||
from .utils import bytes_to_intlist
|
||||
from .utils import bytes_to_intlist, intlist_to_bytes
|
||||
|
||||
BLOCK_SIZE_BYTES = 16
|
||||
|
||||
|
@ -118,7 +118,7 @@ def next_value(self):
|
|||
return temp
|
||||
|
||||
decrypted_data = aes_ctr_decrypt(cipher, key, Counter())
|
||||
plaintext = ''.join(map(lambda x: chr(x), decrypted_data))
|
||||
plaintext = intlist_to_bytes(decrypted_data)
|
||||
|
||||
return plaintext
|
||||
|
||||
|
|
Loading…
Reference in a new issue