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

13 lines
191 B

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