mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-12-06 06:45:00 +01:00
parent
f3008bc5f8
commit
ca5cce5b07
3 changed files with 5 additions and 3 deletions
|
|
@ -435,7 +435,7 @@ def sub_bytes_inv(data):
|
|||
|
||||
|
||||
def rotate(data):
|
||||
return data[1:] + [data[0]]
|
||||
return [*data[1:], data[0]]
|
||||
|
||||
|
||||
def key_schedule_core(data, rcon_iteration):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue