Files
go-easy-utils/cryptox/md5_example_test.go
2025-07-08 15:26:54 +08:00

14 lines
155 B
Go

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