2016-04-26 17:57:11 +01:00
|
|
|
package dnssec
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"hash/fnv"
|
2021-01-10 08:30:00 +01:00
|
|
|
"io"
|
|
|
|
|
"strconv"
|
|
|
|
|
"strings"
|
2016-04-26 17:57:11 +01:00
|
|
|
|
|
|
|
|
"github.com/miekg/dns"
|
|
|
|
|
)
|
|
|
|
|
|
2020-09-01 15:10:45 +08:00
|
|
|
// hash serializes the RRset and returns a signature cache key.
|
2018-08-31 17:26:43 -04:00
|
|
|
func hash(rrs []dns.RR) uint64 {
|
|
|
|
|
h := fnv.New64()
|
2021-01-10 08:30:00 +01:00
|
|
|
// Only need this to be unique for ownername + qtype (+class), but we
|
|
|
|
|
// only care about IN. Its already an RRSet, so the ownername is the
|
|
|
|
|
// same as is the qtype. Take the first one and construct the hash
|
|
|
|
|
// string that creates the key
|
|
|
|
|
io.WriteString(h, strings.ToLower(rrs[0].Header().Name))
|
|
|
|
|
typ, ok := dns.TypeToString[rrs[0].Header().Rrtype]
|
|
|
|
|
if !ok {
|
|
|
|
|
typ = "TYPE" + strconv.FormatUint(uint64(rrs[0].Header().Rrtype), 10)
|
2016-04-26 17:57:11 +01:00
|
|
|
}
|
2021-01-10 08:30:00 +01:00
|
|
|
io.WriteString(h, typ)
|
2018-08-31 17:26:43 -04:00
|
|
|
i := h.Sum64()
|
2017-06-13 12:39:10 -07:00
|
|
|
return i
|
2016-04-26 17:57:11 +01:00
|
|
|
}
|