MCPcopy Create free account
hub / github.com/TideSec/GoBypassAV / main

Function main

Encryption/base64_code/main.go:8–17  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

6)
7
8func main(){
9 var str = "tidesec"
10 strbytes := []byte(str)
11 encoded := base64.StdEncoding.EncodeToString(strbytes)
12 fmt.Println(encoded)
13
14 decoded, _ := base64.StdEncoding.DecodeString(encoded)
15 decodestr := string(decoded)
16 fmt.Println(decodestr)
17}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected