diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-23 18:53:35 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-23 18:53:35 +0800 |
commit | 9d2382cf5f10f06245d5f0cc7b8b250e6e19d06e (patch) | |
tree | 2d22b23e6d3322afa06fd5fd8687809b95a75e18 | |
parent | tmpl.go: Remove unnecessary version prose (diff) | |
download | powxy-9d2382cf5f10f06245d5f0cc7b8b250e6e19d06e.tar.gz powxy-9d2382cf5f10f06245d5f0cc7b8b250e6e19d06e.tar.zst powxy-9d2382cf5f10f06245d5f0cc7b8b250e6e19d06e.zip |
Add MathML notation
-rw-r--r-- | flags.go | 1 | ||||
-rw-r--r-- | global.go | 7 | ||||
-rw-r--r-- | main.go | 4 | ||||
-rw-r--r-- | tmpl.go | 1 |
4 files changed, 9 insertions, 4 deletions
@@ -18,4 +18,5 @@ func init() { flag.StringVar(&destHost, "upstream", "http://127.0.0.1:8080", "destination url base to proxy to") flag.BoolVar(&secondary, "secondary", false, "trust X-Forwarded-For headers") flag.Parse() + global.NeedBitsReverse = 256 - global.NeedBits } @@ -4,7 +4,8 @@ package main var global = struct { - NeedBits uint - SourceURL string - Version string + NeedBits uint + NeedBitsReverse uint + SourceURL string + Version string }{} @@ -39,11 +39,13 @@ func main() { } authPage := func(message string) { - _ = tmpl.Execute(writer, tparams{ + err := tmpl.Execute(writer, tparams{ Identifier: base64.StdEncoding.EncodeToString(identifier), Message: message, Global: global, }) + if err != nil { + } } if request.ParseForm() != nil { @@ -195,6 +195,7 @@ func init() { <section> <p>Select a nonce no longer than 32 bytes, such that when it is appended to the decoded form of the challenge identifier, and the entire result is hashed with SHA-256, the first {{ .Global.NeedBits }} bits of the SHA-256 hash are all zeros. Within one octet, higher bits are considered to come before lower bits.</p> + <p>In other words, find an nonce <math display="inline" xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mi>N</mi><annotation encoding="application/x-tex">N</annotation></semantics></math> with <math display="inline" xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo stretchy="false" form="prefix">|</mo><mi>N</mi><mo stretchy="false" form="postfix">|</mo><mo>≤</mo><mn>32</mn><mspace width="0.167em"></mspace><mi mathvariant="normal">B</mi></mrow><annotation encoding="application/x-tex">\lvert N\rvert \le 32\,\mathrm{B}</annotation></semantics></math>, such that <math display="inline" xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mrow><mi mathvariant="normal">S</mi><mi mathvariant="normal">H</mi><mi mathvariant="normal">A</mi><mn mathvariant="normal">256</mn></mrow><mrow><mo stretchy="true" form="prefix">(</mo><mi>B</mi><mspace width="0.167em"></mspace><mo stretchy="false" form="postfix">∥</mo><mspace width="0.167em"></mspace><mi>N</mi><mo stretchy="true" form="postfix">)</mo></mrow><mo><</mo><msup><mn>2</mn><mn>{{ .Global.NeedBitsReverse }}</mn></msup></mrow><annotation encoding="application/x-tex">\mathrm{SHA256}(B \,\|\, N) < 2^{{{ .Global.NeedBitsReverse }}}</annotation></semantics></math> in big endian.</p> <label for="unsigned-identifier">Challenge identifier (read-only)</label> <input id="unsigned-identifier" type="text" readonly disabled tabindex="-1" value="{{ .Identifier }}" /> </section> |