摘要: package main import ( "crypto/md5" "fmt" "io" "log") //方式一func getMd5String1(str string) string { m := md5.New() _, err := io.WriteString(m, str) if e 阅读全文
posted @ 2020-09-02 22:05 大雾哥 阅读(5443) 评论(0) 推荐(0)