starcrypto/ripe.go

12 lines
200 B
Go
Raw Normal View History

2024-03-10 13:04:26 +08:00
package starcrypto
import "b612.me/starcrypto/hashx"
2024-03-10 13:04:26 +08:00
func RipeMd160(bstr []byte) []byte {
return hashx.RipeMd160(bstr)
2024-03-10 13:04:26 +08:00
}
func RipeMd160Str(bstr []byte) string {
return hashx.RipeMd160Str(bstr)
2024-03-10 13:04:26 +08:00
}