码迷,mamicode.com
首页 > 其他好文 > 详细

[Go] go下实现md5加密

时间:2020-12-14 13:19:12      阅读:3      评论:0      收藏:0      [点我收藏+]

标签:style   port   import   package   return   encoding   string   md5加密   nil   

下面这个工具包下的函数

package utils

import (
    "crypto/md5"
    "encoding/hex"
)

//md5加密
func Md5(src string) string {
    m := md5.New()
    m.Write([]byte(src))
    res := hex.EncodeToString(m.Sum(nil))
    return res
}

 

pass:=utils.Md5("test")

 

[Go] go下实现md5加密

标签:style   port   import   package   return   encoding   string   md5加密   nil   

原文地址:https://www.cnblogs.com/taoshihan/p/14101764.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!