1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00
2021-10-11 21:41:56 +08:00

17 lines
207 B
Go

package gbase64
import (
"fmt"
"github.com/gogf/gf/v2/encoding/gbase64"
)
func main() {
s := "john"
b := gbase64.Encode(s)
c, e := gbase64.Decode(b)
fmt.Println(b)
fmt.Println(c)
fmt.Println(e)
}