MCPcopy Create free account
hub / github.com/Threadfin/Threadfin / strToMD5

Function strToMD5

src/internal/imgcache/tools.go:8–12  ·  view source on GitHub ↗
(str string)

Source from the content-addressed store, hash-verified

6)
7
8func strToMD5(str string) string {
9 md5Hasher := md5.New()
10 md5Hasher.Write([]byte(str))
11 return hex.EncodeToString(md5Hasher.Sum(nil))
12}
13
14func indexOfString(str string, slice []string) int {
15

Callers 1

NewFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected