localAi / pkg /utils /hash.go
eder0782's picture
inicio
7def60a
raw
history blame contribute delete
124 Bytes
package utils
import (
"crypto/md5"
"fmt"
)
func MD5(s string) string {
return fmt.Sprintf("%x", md5.Sum([]byte(s)))
}