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 /token.go | |
parent | BSD-2-Clause (diff) | |
download | powxy-939284194d163015a799cb952c04c14e204bf85c.tar.gz powxy-939284194d163015a799cb952c04c14e204bf85c.tar.zst powxy-939284194d163015a799cb952c04c14e204bf85c.zip |
Rename token -> identifier
Diffstat (limited to '')
-rw-r--r-- | token.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |