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

Function main

Encryption/B85_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 encode := b85.Encode(strbytes)
12 decode,_ := b85.Decode(encode)
13
14 fmt.Printf("加密数据: %v \n", str)
15 fmt.Printf("加密结果: %v \n", encode)
16 fmt.Printf("解密结果: %v \n", string(decode))
17}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected