20 lines
298 B
Go
20 lines
298 B
Go
package starcrypto
|
|
|
|
import "b612.me/starcrypto/hashx"
|
|
|
|
func Md5(bstr []byte) []byte {
|
|
return hashx.Md5(bstr)
|
|
}
|
|
|
|
func Md5Str(bstr []byte) string {
|
|
return hashx.Md5Str(bstr)
|
|
}
|
|
|
|
func Md4(bstr []byte) []byte {
|
|
return hashx.Md4(bstr)
|
|
}
|
|
|
|
func Md4Str(bstr []byte) string {
|
|
return hashx.Md4Str(bstr)
|
|
}
|