mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Fix division bug in aes.py
This commit is contained in:
parent
cba892fa1f
commit
6e74bc41ca
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue