muun-recovery/vendor/github.com/muun/libwallet/hashes.go

11 lines
129 B
Go

package libwallet
import (
"crypto/sha256"
)
func SHA256(data []byte) []byte {
hash := sha256.Sum256(data)
return hash[:]
}