package versiacrypto import "crypto/sha256" func SHA256(data []byte) []byte { h := sha256.New() h.Write(data) return h.Sum(nil) }