forked from TrueCloudLab/neoneo-go
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
|
||
|
}
|