mirror of
https://github.com/jefferyjob/go-easy-utils.git
synced 2025-09-27 03:15:55 +08:00
14 lines
155 B
Go
14 lines
155 B
Go
package cryptox
|
|
|
|
import "fmt"
|
|
|
|
func ExampleMd5() {
|
|
str := "hello"
|
|
res := Md5(str)
|
|
|
|
fmt.Println(res)
|
|
|
|
// Output:
|
|
// 5d41402abc4b2a76b9719d911017c592
|
|
}
|