]> jfr.im git - yt-dlp.git/commitdiff
Let aes_decrypt_text return bytes instead of unicode
authorrzhxeo <redacted>
Wed, 28 Aug 2013 14:03:35 +0000 (16:03 +0200)
committerrzhxeo <redacted>
Wed, 28 Aug 2013 14:03:35 +0000 (16:03 +0200)
youtube_dl/aes.py

index 9913d59a4e014189d21a5d75da32b70badac39c6..9a0c93fa6f4efb415f7e6dad25239a4c219a2542 100644 (file)
@@ -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