aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-25 08:48:12 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-25 08:48:12 +0800
commit1b75c8821eb9565f7ffc065180b7fb7036926c3c (patch)
tree44856de739f1d29fca8a5b61953e632e375fdd34
parentAdd link to CSSWAF (diff)
downloadpowxy-1b75c8821eb9565f7ffc065180b7fb7036926c3c.tar.gz
powxy-1b75c8821eb9565f7ffc065180b7fb7036926c3c.tar.zst
powxy-1b75c8821eb9565f7ffc065180b7fb7036926c3c.zip
Indent python with spaces
-rw-r--r--static/solver.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/static/solver.py b/static/solver.py
index 0fe66f0..908d62d 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())