Files
gf/geg/encoding/gbase64.go

16 lines
202 B
Go
Raw Normal View History

package main
import (
2019-04-03 00:03:46 +08:00
"fmt"
"github.com/gogf/gf/g/encoding/gbase64"
)
func main() {
2019-04-03 00:03:46 +08:00
s := "john"
b := gbase64.Encode(s)
c, e := gbase64.Decode(b)
fmt.Println(b)
fmt.Println(c)
fmt.Println(e)
}