aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-23 18:19:58 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-23 18:20:37 +0800
commit939284194d163015a799cb952c04c14e204bf85c (patch)
tree8bbe517dcf54e09a20c43535108dab3fe5506ad5
parentBSD-2-Clause (diff)
downloadpowxy-939284194d163015a799cb952c04c14e204bf85c.tar.gz
powxy-939284194d163015a799cb952c04c14e204bf85c.tar.zst
powxy-939284194d163015a799cb952c04c14e204bf85c.zip
Rename token -> identifier
-rw-r--r--main.go18
-rw-r--r--tmpl.go18
-rw-r--r--token.go2
3 files changed, 19 insertions, 19 deletions
diff --git a/main.go b/main.go
index 06feec7..3a69564 100644
--- a/main.go
+++ b/main.go
@@ -14,9 +14,9 @@ import (
)
type tparams struct {
- UnsignedTokenBase64 string
- Message string
- Global any
+ Identifier string
+ Message string
+ Global any
}
func main() {
@@ -31,7 +31,7 @@ func main() {
}
}
- identifier, expectedMAC := makeSignedToken(request)
+ identifier, expectedMAC := makeIdentifierMAC(request)
if validateCookie(cookie, expectedMAC) {
proxyRequest(writer, request)
@@ -40,9 +40,9 @@ func main() {
authPage := func(message string) {
_ = tmpl.Execute(writer, tparams{
- UnsignedTokenBase64: base64.StdEncoding.EncodeToString(identifier),
- Message: message,
- Global: global,
+ Identifier: base64.StdEncoding.EncodeToString(identifier),
+ Message: message,
+ Global: global,
})
}
@@ -94,12 +94,12 @@ func validateCookie(cookie *http.Cookie, expectedMAC []byte) bool {
return false
}
- gotToken, err := base64.StdEncoding.DecodeString(cookie.Value)
+ gotMAC, err := base64.StdEncoding.DecodeString(cookie.Value)
if err != nil {
return false
}
- return subtle.ConstantTimeCompare(gotToken, expectedMAC) == 1
+ return subtle.ConstantTimeCompare(gotMAC, expectedMAC) == 1
}
func getRemoteIP(request *http.Request) (remoteIP string) {
diff --git a/tmpl.go b/tmpl.go
index 3c297ec..de77674 100644
--- a/tmpl.go
+++ b/tmpl.go
@@ -192,16 +192,16 @@ func init() {
{{- end }}
<section>
- <p>Select a nonce no longer than 32 bytes, such that when it is appended to the decoded form of the challenge token, 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>
- <label for="unsigned-token">Challenge token (read-only)</label>
- <input id="unsigned-token" type="text" readonly disabled tabindex="-1" value="{{ .UnsignedTokenBase64 }}" />
+ <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>
+ <label for="unsigned-identifier">Challenge identifier (read-only)</label>
+ <input id="unsigned-identifier" type="text" readonly disabled tabindex="-1" value="{{ .Identifier }}" />
</section>
<section>
<form method="POST">
<p>Encode your selected nonce in base64 and submit it below.</p>
<p>Please note that if your submission is successful, you will be given a cookie that will allow you to access this site for a period of time without having to complete the challenge again. By pressing the submit button, you agree to be given cookies for this purpose.</p>
- <label id="nonce" for="unsigned-token">Nonce</label>
+ <label for="nonce">Nonce</label>
<input id="nonce" name="powxy" type="text" />
<input type="submit" value="Submit" />
</form>
@@ -219,7 +219,7 @@ func init() {
<script>
document.addEventListener("DOMContentLoaded", function() {
- let challenge_b64 = "{{ .UnsignedTokenBase64 }}";
+ let challenge_b64 = "{{ .Identifier }}";
let difficulty = {{ .Global.NeedBits }};
let form = document.querySelector("form");
let field = form.querySelector("input[name='powxy']");
@@ -237,7 +237,7 @@ func init() {
});
async function solve_pow() {
- let token_bytes = Uint8Array.from(
+ let identifier_bytes = Uint8Array.from(
atob(challenge_b64),
ch => ch.charCodeAt(0)
);
@@ -249,9 +249,9 @@ func init() {
while (solver_active) {
view.setBigUint64(0, nonce, true);
- let candidate = new Uint8Array(token_bytes.length + 8);
- candidate.set(token_bytes, 0);
- candidate.set(new Uint8Array(buf), token_bytes.length);
+ let candidate = new Uint8Array(identifier_bytes.length + 8);
+ candidate.set(identifier_bytes, 0);
+ candidate.set(new Uint8Array(buf), identifier_bytes.length);
let digest_buffer = await crypto.subtle.digest("SHA-256", candidate);
let digest = new Uint8Array(digest_buffer);
diff --git a/token.go b/token.go
index 480fcd0..6da0e7c 100644
--- a/token.go
+++ b/token.go
@@ -11,7 +11,7 @@ import (
"time"
)
-func makeSignedToken(request *http.Request) (identifier []byte, mac []byte) {
+func makeIdentifierMAC(request *http.Request) (identifier []byte, mac []byte) {
identifier = make([]byte, 0, sha256.Size)
mac = make([]byte, 0, sha256.Size)