From 939284194d163015a799cb952c04c14e204bf85c Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Sun, 23 Mar 2025 18:19:58 +0800 Subject: Rename token -> identifier --- main.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'main.go') 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) { -- cgit v1.2.3