mirror of
https://github.com/jefferyjob/go-easy-utils.git
synced 2026-04-23 00:07:09 +08:00
e9cc195c39
example docs
14 lines
158 B
Go
14 lines
158 B
Go
package cryptoUtil
|
|
|
|
import "fmt"
|
|
|
|
func ExampleMd5() {
|
|
str := "hello"
|
|
res := Md5(str)
|
|
|
|
fmt.Println(res)
|
|
|
|
// Output:
|
|
// 5d41402abc4b2a76b9719d911017c592
|
|
}
|