12 lines
200 B
Go
12 lines
200 B
Go
package starcrypto
|
|
|
|
import "b612.me/starcrypto/hashx"
|
|
|
|
func RipeMd160(bstr []byte) []byte {
|
|
return hashx.RipeMd160(bstr)
|
|
}
|
|
|
|
func RipeMd160Str(bstr []byte) string {
|
|
return hashx.RipeMd160Str(bstr)
|
|
}
|