starcrypto/md5.go

20 lines
298 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 Md5(bstr []byte) []byte {
return hashx.Md5(bstr)
2024-03-10 13:04:26 +08:00
}
func Md5Str(bstr []byte) string {
return hashx.Md5Str(bstr)
2024-03-10 13:04:26 +08:00
}
func Md4(bstr []byte) []byte {
return hashx.Md4(bstr)
2024-03-10 13:04:26 +08:00
}
func Md4Str(bstr []byte) string {
return hashx.Md4Str(bstr)
2024-03-10 13:04:26 +08:00
}