Files
go-easy-utils/cryptoUtil/md5_example_test.go
jeffery e9cc195c39 Feature/example test (#24)
example docs
2023-04-12 15:09:44 +08:00

14 lines
158 B
Go

package cryptoUtil
import "fmt"
func ExampleMd5() {
str := "hello"
res := Md5(str)
fmt.Println(res)
// Output:
// 5d41402abc4b2a76b9719d911017c592
}