mirror of
https://github.com/mudler/LocalAI
synced 2026-04-21 21:37:21 +00:00
11 lines
124 B
Go
11 lines
124 B
Go
|
|
package utils
|
||
|
|
|
||
|
|
import (
|
||
|
|
"crypto/md5"
|
||
|
|
"fmt"
|
||
|
|
)
|
||
|
|
|
||
|
|
func MD5(s string) string {
|
||
|
|
return fmt.Sprintf("%x", md5.Sum([]byte(s)))
|
||
|
|
}
|