From: rzhxeo Date: Wed, 28 Aug 2013 14:01:43 +0000 (+0200) Subject: Fix division bug in aes.py X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=commitdiff_plain;h=6e74bc41ca07bda56107cfff9ceb98d6f8d28e53;p=youtube-dl.git Fix division bug in aes.py --- diff --git a/youtube_dl/aes.py b/youtube_dl/aes.py index 278f8bb82..9913d59a4 100644 --- a/youtube_dl/aes.py +++ b/youtube_dl/aes.py @@ -18,7 +18,7 @@ def aes_ctr_decrypt(data, key, counter): @returns {int[]} decrypted data """ expanded_key = key_expansion(key) - block_count = int(ceil(float(len(data)) // BLOCK_SIZE_BYTES)) + block_count = int(ceil(float(len(data)) / BLOCK_SIZE_BYTES)) decrypted_data=[] for i in range(block_count):