()
| 6 | ) |
| 7 | |
| 8 | func 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected