MCPcopy Create free account
hub / github.com/code-scan/Goal / B64Decode

Function B64Decode

Gconvert/encode.go:18–25  ·  view source on GitHub ↗
(param string)

Source from the content-addressed store, hash-verified

16 return ret
17}
18func B64Decode(param string) string {
19 ret, err := base64.StdEncoding.DecodeString(param)
20 if err != nil {
21 log.Println("[!] b64decode Error: ", err)
22 return ""
23 }
24 return string(ret)
25}

Callers 1

TestConvertFunction · 0.92

Calls

no outgoing calls

Tested by 1

TestConvertFunction · 0.74