123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- // Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
- //
- // This Source Code Form is subject to the terms of the MIT License.
- // If a copy of the MIT was not distributed with this file,
- // You can obtain one at https://github.com/gogf/gf.
- // Package gbase64 provides useful API for BASE64 encoding/decoding algorithm.
- package gbase64
- import (
- "encoding/base64"
- "github.com/gogf/gf/util/gconv"
- "io/ioutil"
- )
- // Encode encodes bytes with BASE64 algorithm.
- func Encode(src []byte) []byte {
- dst := make([]byte, base64.StdEncoding.EncodedLen(len(src)))
- base64.StdEncoding.Encode(dst, src)
- return dst
- }
- // EncodeString encodes string with BASE64 algorithm.
- func EncodeString(src string) string {
- return EncodeToString([]byte(src))
- }
- // EncodeToString encodes bytes to string with BASE64 algorithm.
- func EncodeToString(src []byte) string {
- return gconv.UnsafeBytesToStr(Encode(src))
- }
- // EncryptFile encodes file content of <path> using BASE64 algorithms.
- func EncodeFile(path string) ([]byte, error) {
- content, err := ioutil.ReadFile(path)
- if err != nil {
- return nil, err
- }
- return Encode(content), nil
- }
- // MustEncodeFile encodes file content of <path> using BASE64 algorithms.
- // It panics if any error occurs.
- func MustEncodeFile(path string) []byte {
- result, err := EncodeFile(path)
- if err != nil {
- panic(err)
- }
- return result
- }
- // EncodeFileToString encodes file content of <path> to string using BASE64 algorithms.
- func EncodeFileToString(path string) (string, error) {
- content, err := EncodeFile(path)
- if err != nil {
- return "", err
- }
- return gconv.UnsafeBytesToStr(content), nil
- }
- // MustEncodeFileToString encodes file content of <path> to string using BASE64 algorithms.
- // It panics if any error occurs.
- func MustEncodeFileToString(path string) string {
- result, err := EncodeFileToString(path)
- if err != nil {
- panic(err)
- }
- return result
- }
- // Decode decodes bytes with BASE64 algorithm.
- func Decode(data []byte) ([]byte, error) {
- src := make([]byte, base64.StdEncoding.DecodedLen(len(data)))
- n, err := base64.StdEncoding.Decode(src, data)
- return src[:n], err
- }
- // MustDecode decodes bytes with BASE64 algorithm.
- // It panics if any error occurs.
- func MustDecode(data []byte) []byte {
- result, err := Decode(data)
- if err != nil {
- panic(err)
- }
- return result
- }
- // DecodeString decodes string with BASE64 algorithm.
- func DecodeString(data string) ([]byte, error) {
- return Decode([]byte(data))
- }
- // MustDecodeString decodes string with BASE64 algorithm.
- // It panics if any error occurs.
- func MustDecodeString(data string) []byte {
- result, err := DecodeString(data)
- if err != nil {
- panic(err)
- }
- return result
- }
- // DecodeString decodes string with BASE64 algorithm.
- func DecodeToString(data string) (string, error) {
- b, err := DecodeString(data)
- return gconv.UnsafeBytesToStr(b), err
- }
- // MustDecodeToString decodes string with BASE64 algorithm.
- // It panics if any error occurs.
- func MustDecodeToString(data string) string {
- result, err := DecodeToString(data)
- if err != nil {
- panic(err)
- }
- return result
- }
|