Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
8
func
strToMD5(str string) string {
9
md5Hasher := md5.New()
10
md5Hasher.Write([]byte(str))
11
return
hex.EncodeToString(md5Hasher.Sum(nil))
12
}
13
14
func
indexOfString(str string, slice []string) int {
15
Callers
1
New
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected