diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-25 09:04:05 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-25 09:04:05 +0800 |
commit | 65faac4f0752918c947ba9a6fe3208d7301668f9 (patch) | |
tree | 9d0038e4e88eabbba40b6a85573feb2f9be217a0 | |
parent | Lighter primary color var (diff) | |
download | powxy-65faac4f0752918c947ba9a6fe3208d7301668f9.tar.gz powxy-65faac4f0752918c947ba9a6fe3208d7301668f9.tar.zst powxy-65faac4f0752918c947ba9a6fe3208d7301668f9.zip |
Meh, use tabs
-rw-r--r-- | static/solver.py | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/static/solver.py b/static/solver.py index 908d62d..83841fb 100644 --- a/static/solver.py +++ b/static/solver.py @@ -7,23 +7,23 @@ import sys import struct def validate_bit_zeros(bs: bytes, n: int) -> bool: - q, r = divmod(n, 8) - if any(b != 0 for b in bs[:q]): - return False - if r and (bs[q] & (0xFF << (8 - r))): - return False - return True + q, r = divmod(n, 8) + if any(b != 0 for b in bs[:q]): + return False + if r and (bs[q] & (0xFF << (8 - r))): + return False + return True decoded = base64.b64decode(sys.argv[1]) difficulty = int(sys.argv[2]) next_val = 0 while True: - h = hashlib.sha256(decoded + struct.pack("Q", next_val)).digest() - if validate_bit_zeros(h, difficulty): - break - next_val = (next_val + 1) & 0xFFFFFFFFFFFFFFFF - if next_val == 0: - raise ValueError("overflow") + h = hashlib.sha256(decoded + struct.pack("Q", next_val)).digest() + if validate_bit_zeros(h, difficulty): + break + next_val = (next_val + 1) & 0xFFFFFFFFFFFFFFFF + if next_val == 0: + raise ValueError("overflow") print(base64.b64encode(struct.pack("Q", next_val)).decode()) |