diff --git a/common/byteslice.go b/common/byteslice.go index be828f065..ceaf06bd3 100644 --- a/common/byteslice.go +++ b/common/byteslice.go @@ -4,6 +4,9 @@ import ( "bytes" ) +// Fingerprint returns the first 6 bytes of a byte slice. +// If the slice is less than 6 bytes, the fingerprint +// contains trailing zeroes. func Fingerprint(slice []byte) []byte { fingerprint := make([]byte, 6) copy(fingerprint, slice)