mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-14 23:07:50 +00:00
22 lines
305 B
Go
22 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
|
||
|
}
|