Spaces:
Running
Running
File size: 124 Bytes
750bbe6 |
1 2 3 4 5 6 7 8 9 10 11 |
package utils
import (
"crypto/md5"
"fmt"
)
func MD5(s string) string {
return fmt.Sprintf("%x", md5.Sum([]byte(s)))
}
|