From efbc14fbc8c619eabd26d3bfe7e02e6490626d78 Mon Sep 17 00:00:00 2001 From: Ben Morrison Date: Wed, 18 Dec 2019 23:42:15 -0500 Subject: reduced size of hash for etag to 32bits --- svc/handlers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/svc/handlers.go b/svc/handlers.go index 4ae0bdd..645b3fc 100644 --- a/svc/handlers.go +++ b/svc/handlers.go @@ -34,11 +34,11 @@ import ( func getEtagFromTime(modtime time.Time) string { shabytes, err := modtime.MarshalText() errLog("", err) - return fmt.Sprintf("%x", fnv.New128().Sum(shabytes)) + return fmt.Sprintf("%x", fnv.New32().Sum(shabytes)) } func getEtag(data []byte) string { - return fmt.Sprintf("%x", fnv.New128().Sum(data)) + return fmt.Sprintf("%x", fnv.New32().Sum(data)) } func servStatic(w http.ResponseWriter, isCSS bool) error { -- cgit 1.4.1-2-gfad0