about summary refs log tree commit diff
path: root/test/test_aes.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-03-22 12:09:58 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-03-22 12:09:58 +0100
commitf9544f6e8fe4697a4a48364b6d7a7dc7d93cabf5 (patch)
treebc88ce1419c572458abd860ec59f9c5e0b823e78 /test/test_aes.py
parent336d19044c84128cc3bdcb62882372243dfa32c8 (diff)
downloadyoutube-dl-f9544f6e8fe4697a4a48364b6d7a7dc7d93cabf5.tar.gz
youtube-dl-f9544f6e8fe4697a4a48364b6d7a7dc7d93cabf5.tar.xz
youtube-dl-f9544f6e8fe4697a4a48364b6d7a7dc7d93cabf5.zip
[test/aes] Test aes_decrypt_text with 256 bit
Diffstat (limited to 'test/test_aes.py')
-rw-r--r--test/test_aes.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_aes.py b/test/test_aes.py
index 111b902e1..4dc7de7b5 100644
--- a/test/test_aes.py
+++ b/test/test_aes.py
@@ -43,5 +43,13 @@ class TestAES(unittest.TestCase):
         decrypted = (aes_decrypt_text(encrypted, password, 16))
         self.assertEqual(decrypted, self.secret_msg)
 
+        password = intlist_to_bytes(self.key).decode('utf-8')
+        encrypted = base64.b64encode(
+            intlist_to_bytes(self.iv[:8]) +
+            b'\x0b\xe6\xa4\xd9z\x0e\xb8\xb9\xd0\xd4i_\x85\x1d\x99\x98_\xe5\x80\xe7.\xbf\xa5\x83'
+        )
+        decrypted = (aes_decrypt_text(encrypted, password, 32))
+        self.assertEqual(decrypted, self.secret_msg)
+
 if __name__ == '__main__':
     unittest.main()