diff options
Diffstat (limited to 'identifier.go')
-rw-r--r-- | identifier.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/identifier.go b/identifier.go index 6da0e7c..a291f99 100644 --- a/identifier.go +++ b/identifier.go @@ -20,6 +20,8 @@ func makeIdentifierMAC(request *http.Request) (identifier []byte, mac []byte) { remoteIP := getRemoteIP(request) + // It is safe to use stringToBytes here as h.Write does not modify its + // argument. h := sha256.New() h.Write(timeBuf) h.Write(stringToBytes(remoteIP)) |