You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
165 B
13 lines
165 B
2 years ago
|
package xmd5
|
||
|
|
||
|
import (
|
||
|
"crypto/md5"
|
||
|
"encoding/hex"
|
||
|
)
|
||
|
|
||
|
func MD5(str string) string {
|
||
|
s := md5.New()
|
||
|
s.Write([]byte(str))
|
||
|
return hex.EncodeToString(s.Sum(nil))
|
||
|
}
|