mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-26 23:32:15 +00:00
16 lines
283 B
Go
16 lines
283 B
Go
|
package p2p
|
||
|
|
||
|
import (
|
||
|
"crypto/sha256"
|
||
|
)
|
||
|
|
||
|
// doubleSha256 calculates sha256(sha256(b)) and returns the resulting bytes.
|
||
|
func doubleSha256(b []byte) []byte {
|
||
|
hasher := sha256.New()
|
||
|
hasher.Write(b)
|
||
|
sum := hasher.Sum(nil)
|
||
|
hasher.Reset()
|
||
|
hasher.Write(sum)
|
||
|
return hasher.Sum(nil)
|
||
|
}
|