摘要: package main import ( "crypto/md5" "encoding/hex" "fmt" "io" ) // 官网的例子:http://golang.org/pkg/crypto/md5/ func main() { str := "123456" // 需要加密的字符串 h := md5.New() io.WriteString(h, str) fmt... 阅读全文
posted @ 2017-08-07 15:14 52php 阅读(537) 评论(0) 推荐(0) 编辑