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.

19 lines
190 B

package utils
import (
"fmt"
"testing"
)
/*
*
@author: sre
@date: 2022/8/10 0010
@desc: test md5String
*
*/
func TestMd5String(t *testing.T) {
s := Md5String("hello")
fmt.Println(s)
}