mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-12 11:10:35 +00:00
648563c3e2
Compiler and VM update
21 lines
305 B
Go
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
|
|
}
|