You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/utils/gomd5/gomd5_test.go

12 lines
169 B

package gomd5
import (
"testing"
)
func TestMd5(t *testing.T) {
t.Logf(GetMD5Encode("测试"))
t.Logf(ToUpper(GetMD5Encode("测试")))
t.Logf(ToUpper("测试"))
}