aboutsummaryrefslogtreecommitdiff
path: root/token.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 /token.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--token.go2
1 files changed, 1 insertions, 1 deletions
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)