Files

9 lines
117 B
Go

package util
import "lukechampine.com/blake3"
func Hash256(b []byte) [32]byte {
h := blake3.Sum256(b)
return h
}