aboutsummaryrefslogtreecommitdiff
path: root/main.go
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 /main.go
parentBSD-2-Clause (diff)
downloadpowxy-939284194d163015a799cb952c04c14e204bf85c.tar.gz
powxy-939284194d163015a799cb952c04c14e204bf85c.tar.zst
powxy-939284194d163015a799cb952c04c14e204bf85c.zip
Rename token -> identifier
Diffstat (limited to '')
-rw-r--r--main.go18
1 files changed, 9 insertions, 9 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) {