bitbucket.org/number571/tendermint@v0.8.14/crypto/hash.go (about)

     1  package crypto
     2  
     3  import (
     4  	ghash "bitbucket.org/number571/go-cryptopro/gost_r_34_11_2012"
     5  )
     6  
     7  func HashSum(bytes []byte) []byte {
     8  	return ghash.Sum(ghash.H256, bytes)
     9  }