aboutsummaryrefslogtreecommitdiffhomepage
path: root/admin.go
diff options
context:
space:
mode:
authorHayder <[email protected]>2024-03-30 09:24:50 -0400
committerGitHub <[email protected]>2024-03-30 07:24:50 -0600
commit1217449609050471dfb70fdf35c9a22d738e2bef (patch)
tree5fdf600bcfb9d7f607e41678e2e14057e4f4e693 /admin.go
parente0bf179c1a0ee2fd6847ebb443ddd36fe8fc5421 (diff)
downloadcaddy-1217449609050471dfb70fdf35c9a22d738e2bef.tar.gz
caddy-1217449609050471dfb70fdf35c9a22d738e2bef.zip
admin: Use xxhash for etag (#6207)
Diffstat (limited to 'admin.go')
-rw-r--r--admin.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin.go b/admin.go
index 0a9bfc49b..c6151d114 100644
--- a/admin.go
+++ b/admin.go
@@ -26,7 +26,6 @@ import (
"expvar"
"fmt"
"hash"
- "hash/fnv"
"io"
"net"
"net/http"
@@ -41,6 +40,7 @@ import (
"time"
"github.com/caddyserver/certmagic"
+ "github.com/cespare/xxhash/v2"
"github.com/prometheus/client_golang/prometheus"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
@@ -946,7 +946,7 @@ func (h adminHandler) originAllowed(origin *url.URL) bool {
// etagHasher returns a the hasher we used on the config to both
// produce and verify ETags.
-func etagHasher() hash.Hash32 { return fnv.New32a() }
+func etagHasher() hash.Hash { return xxhash.New() }
// makeEtag returns an Etag header value (including quotes) for
// the given config path and hash of contents at that path.