mirror of
https://gitcode.com/flipped-aurora/gin-vue-admin.git
synced 2026-05-13 10:52:34 +00:00
13 lines
159 B
Go
13 lines
159 B
Go
package tools
|
|
|
|
import (
|
|
"crypto/md5"
|
|
"encoding/hex"
|
|
)
|
|
|
|
func MD5V(str []byte) string {
|
|
h := md5.New()
|
|
h.Write(str)
|
|
return hex.EncodeToString(h.Sum(nil))
|
|
}
|