neo-go/pkg/crypto/hash/hash.go

52 lines
1.1 KiB
Go
Raw Normal View History

2019-02-25 22:44:14 +00:00
package hash
import (
"crypto/sha256"
"github.com/nspcc-dev/neo-go/pkg/util"
2019-02-25 22:44:14 +00:00
"golang.org/x/crypto/ripemd160"
)
// Sha256 hashes the incoming byte slice
2019-10-22 14:56:03 +00:00
// using the sha256 algorithm.
func Sha256(data []byte) util.Uint256 {
hash := sha256.Sum256(data)
return hash
2019-02-25 22:44:14 +00:00
}
2019-10-22 14:56:03 +00:00
// DoubleSha256 performs sha256 twice on the given data.
func DoubleSha256(data []byte) util.Uint256 {
2019-02-25 22:44:14 +00:00
var hash util.Uint256
h1 := Sha256(data)
2019-11-27 09:23:18 +00:00
hash = Sha256(h1.BytesBE())
return hash
2019-02-25 22:44:14 +00:00
}
// RipeMD160 performs the RIPEMD160 hash algorithm
2019-10-22 14:56:03 +00:00
// on the given data.
func RipeMD160(data []byte) util.Uint160 {
2019-02-25 22:44:14 +00:00
var hash util.Uint160
hasher := ripemd160.New()
_, _ = hasher.Write(data)
2019-11-27 09:20:31 +00:00
hash, _ = util.Uint160DecodeBytesBE(hasher.Sum(nil))
return hash
2019-02-25 22:44:14 +00:00
}
// Hash160 performs sha256 and then ripemd160
2019-10-22 14:56:03 +00:00
// on the given data.
func Hash160(data []byte) util.Uint160 {
h1 := Sha256(data)
2019-11-27 09:23:18 +00:00
h2 := RipeMD160(h1.BytesBE())
2019-02-25 22:44:14 +00:00
return h2
2019-02-25 22:44:14 +00:00
}
// Checksum returns the checksum for a given piece of data
2019-10-22 14:56:03 +00:00
// using sha256 twice as the hash algorithm.
func Checksum(data []byte) []byte {
hash := DoubleSha256(data)
return hash[:4]
2019-02-25 22:44:14 +00:00
}