From 911c932ec426ee45c9380bd26714c4bb505a3a88 Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Sun, 23 Mar 2025 12:47:10 +0800 Subject: Use a global struct with version and source info --- main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index a2113ec..4844f48 100644 --- a/main.go +++ b/main.go @@ -15,8 +15,8 @@ import ( type tparams struct { UnsignedTokenBase64 string - NeedBits uint Message string + Global any } func main() { @@ -42,7 +42,7 @@ func main() { _ = tmpl.Execute(writer, tparams{ UnsignedTokenBase64: base64.StdEncoding.EncodeToString(expectedToken[:sha256.Size]), Message: message, - NeedBits: difficulty, + Global: global, }) } @@ -75,7 +75,7 @@ func main() { h.Write(expectedToken[:sha256.Size]) h.Write(nonce) ck := h.Sum(nil) - if !validateBitZeros(ck, difficulty) { + if !validateBitZeros(ck, global.NeedBits) { authPage("Your submission was incorrect, or your session has expired while submitting.") return } -- cgit v1.2.3