1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-09 05:19:38 +00:00

[aes] Linter

This commit is contained in:
dirkf 2022-08-08 08:26:44 +01:00 committed by GitHub
parent 28194bd327
commit e679476ea0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -303,7 +303,7 @@ def xor(data1, data2):
def rijndael_mul(a, b):
if(a == 0 or b == 0):
if (a == 0 or b == 0):
return 0
return RIJNDAEL_EXP_TABLE[(RIJNDAEL_LOG_TABLE[a] + RIJNDAEL_LOG_TABLE[b]) % 0xFF]