about summary refs log tree commit diff
path: root/devscripts
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 /devscripts
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 'devscripts')
-rw-r--r--devscripts/generate_aes_testdata.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/devscripts/generate_aes_testdata.py b/devscripts/generate_aes_testdata.py
index ff66449eb..2e389fc8e 100644
--- a/devscripts/generate_aes_testdata.py
+++ b/devscripts/generate_aes_testdata.py
@@ -32,5 +32,11 @@ print(repr(r))
 password = key
 new_key = aes_encrypt(password, key_expansion(password))
 r = openssl_encode('aes-128-ctr', new_key, iv)
-print('aes_decrypt_text')
+print('aes_decrypt_text 16')
+print(repr(r))
+
+password = key + 16 * [0]
+new_key = aes_encrypt(password, key_expansion(password)) * (32 // 16)
+r = openssl_encode('aes-256-ctr', new_key, iv)
+print('aes_decrypt_text 32')
 print(repr(r))