tools.go 146 B

123456789
  1. package main
  2. import "hash/fnv"
  3. func hashCompanyID(companyID string) uint32 {
  4. h := fnv.New32a()
  5. h.Write([]byte(companyID))
  6. return h.Sum32()
  7. }