aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-25 03:25:30 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-25 03:26:57 +0800
commit709ef721afb0dc239e5246f5205f701b99d4a199 (patch)
tree07e1101e3fa695312b8f803f78bd32c9dc4bae89
parentLog form values on form validation attempts (diff)
downloadpowxy-709ef721afb0dc239e5246f5205f701b99d4a199.tar.gz
powxy-709ef721afb0dc239e5246f5205f701b99d4a199.tar.zst
powxy-709ef721afb0dc239e5246f5205f701b99d4a199.zip
Add Python challenge-solver scriptv0.1.16
-rw-r--r--challenge.html2
-rw-r--r--static/solver.py29
2 files changed, 30 insertions, 1 deletions
diff --git a/challenge.html b/challenge.html
index 77e1eed..03c5988 100644
--- a/challenge.html
+++ b/challenge.html
@@ -48,7 +48,7 @@
</section>
<section>
- <p><a href="/.powxy/static/solver.c">A C implementation of the challenge solver</a> is available.</p>
+ <p><a href="/.powxy/static/solver.c">A C implementation</a> and <a href="/.powxy/static/solver.py">a Python implementation</a> of the challenge solver are available.</p>
</section>
</main>
</body>
diff --git a/static/solver.py b/static/solver.py
new file mode 100644
index 0000000..0fe66f0
--- /dev/null
+++ b/static/solver.py
@@ -0,0 +1,29 @@
+# SPDX-License-Identifier: BSD-2-Clause
+# SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>
+
+import base64
+import hashlib
+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
+
+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")
+
+print(base64.b64encode(struct.pack("Q", next_val)).decode())