neoneo-go/pkg/vm/api/crypto/util.go
Anthony De Meulemeester 648563c3e2
Compiler (#73)
Compiler and VM update
2018-04-22 20:11:37 +02:00

21 lines
305 B
Go

package crypto
// SHA1 computes the sha1 hash of b.
func SHA1(b []byte) []byte {
return nil
}
// SHA256 computes the sha256 hash of b.
func SHA256(b []byte) []byte {
return nil
}
// Hash160 ..
func Hash160(b []byte) []byte {
return nil
}
// Hash256 ..
func Hash256(b []byte) []byte {
return nil
}