package main import "hash/fnv" func hashCompanyID(companyID string) uint32 { h := fnv.New32a() h.Write([]byte(companyID)) return h.Sum32() }