https://github.com/tendermint/tendermint
Raw File
Tip revision: 85870def7b628effad73af942e638bbddf2ba8fd authored by Callum Waters on 13 October 2021, 08:47:16 UTC
release: prepare changelog for 0.34.14 (#7105)
Tip revision: 85870de
hash.go
package crypto

import (
	"crypto/sha256"
)

func Sha256(bytes []byte) []byte {
	hasher := sha256.New()
	hasher.Write(bytes)
	return hasher.Sum(nil)
}
back to top