diff options
| author | 2025-05-26 06:45:53 -0400 | |
|---|---|---|
| committer | 2025-05-26 06:45:53 -0400 | |
| commit | 7672a750cb74bf31e21d76aad2776367fd476155 (patch) | |
| tree | d51170cce0e6d11a919386def8fa0e05dc9cf54b /gallery_dl/transaction_id.py | |
| parent | c679cd7a13bdbf6896e53d68fe2093910bc6625a (diff) | |
New upstream version 1.29.7.upstream/1.29.7
Diffstat (limited to 'gallery_dl/transaction_id.py')
| -rw-r--r-- | gallery_dl/transaction_id.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gallery_dl/transaction_id.py b/gallery_dl/transaction_id.py index 25f1775..89e3d5b 100644 --- a/gallery_dl/transaction_id.py +++ b/gallery_dl/transaction_id.py @@ -129,7 +129,9 @@ class ClientTransaction(): keyword="obfiowerehiring", rndnum=3): bytes_key = self.key_bytes - now = int(time.time()) - 1682924400 + nowf = time.time() + nowi = int(nowf) + now = nowi - 1682924400 bytes_time = ( (now ) & 0xFF, # noqa: E202 (now >> 8) & 0xFF, # noqa: E222 @@ -141,7 +143,7 @@ class ClientTransaction(): method, path, now, keyword, self.animation_key) bytes_hash = hashlib.sha256(payload.encode()).digest()[:16] - num = random.randrange(256) + num = (random.randrange(16) << 4) + int((nowf - nowi) * 16.0) result = bytes( byte ^ num for byte in itertools.chain( |
