diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-23 18:19:58 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-23 18:20:37 +0800 |
commit | 939284194d163015a799cb952c04c14e204bf85c (patch) | |
tree | 8bbe517dcf54e09a20c43535108dab3fe5506ad5 /main.go | |
parent | BSD-2-Clause (diff) | |
download | powxy-939284194d163015a799cb952c04c14e204bf85c.tar.gz powxy-939284194d163015a799cb952c04c14e204bf85c.tar.zst powxy-939284194d163015a799cb952c04c14e204bf85c.zip |
Rename token -> identifier
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -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) { |