version: 1.10

package base64

import "encoding/base64"

Overview

Package base64 implements base64 encoding as specified by RFC 4648.

Example:

  1. msg := "Hello, 世界"
  2. encoded := base64.StdEncoding.EncodeToString([]byte(msg))
  3. fmt.Println(encoded)
  4. decoded, err := base64.StdEncoding.DecodeString(encoded)
  5. if err != nil {
  6. fmt.Println("decode error:", err)
  7. return
  8. }
  9. fmt.Println(string(decoded))
  10. // Output:
  11. // SGVsbG8sIOS4lueVjA==
  12. // Hello, 世界

Index

Examples

Package files

base64.go

Constants

  1. const (
  2. StdPadding rune = '=' // Standard padding character
  3. NoPadding rune = -1 // No padding
  4. )

Variables

  1. var RawStdEncoding = StdEncoding.WithPadding(NoPadding)

RawStdEncoding is the standard raw, unpadded base64 encoding, as defined in RFC 4648 section 3.2. This is the same as StdEncoding but omits padding characters.

  1. var RawURLEncoding = URLEncoding.WithPadding(NoPadding)

RawURLEncoding is the unpadded alternate base64 encoding defined in RFC 4648. It is typically used in URLs and file names. This is the same as URLEncoding but omits padding characters.

  1. var StdEncoding = NewEncoding(encodeStd)

StdEncoding is the standard base64 encoding, as defined in RFC 4648.

  1. var URLEncoding = NewEncoding(encodeURL)

URLEncoding is the alternate base64 encoding defined in RFC 4648. It is typically used in URLs and file names.

func NewDecoder

  1. func NewDecoder(enc *Encoding, r io.Reader) io.Reader

NewDecoder constructs a new base64 stream decoder.

func NewEncoder

  1. func NewEncoder(enc *Encoding, w io.Writer) io.WriteCloser

NewEncoder returns a new base64 stream encoder. Data written to the returned writer will be encoded using enc and then written to w. Base64 encodings operate in 4-byte blocks; when finished writing, the caller must Close the returned encoder to flush any partially written blocks.

Example:

  1. input := []byte("foo\x00bar")
  2. encoder := base64.NewEncoder(base64.StdEncoding, os.Stdout)
  3. encoder.Write(input)
  4. // Must close the encoder when finished to flush any partial blocks.
  5. // If you comment out the following line, the last partial block "r"
  6. // won't be encoded.
  7. encoder.Close()
  8. // Output:
  9. // Zm9vAGJhcg==

type CorruptInputError

  1. type CorruptInputError int64

func (CorruptInputError) Error

  1. func (e CorruptInputError) Error() string

type Encoding

  1. type Encoding struct {
  2. // contains filtered or unexported fields
  3. }

An Encoding is a radix 64 encoding/decoding scheme, defined by a 64-character alphabet. The most common encoding is the “base64” encoding defined in RFC 4648 and used in MIME (RFC 2045) and PEM (RFC 1421). RFC 4648 also defines an alternate encoding, which is the standard encoding with - and _ substituted for

  • and /.

func NewEncoding

  1. func NewEncoding(encoder string) *Encoding

NewEncoding returns a new padded Encoding defined by the given alphabet, which must be a 64-byte string that does not contain the padding character or CR / LF (‘\r’, ‘\n’). The resulting Encoding uses the default padding character (‘=’), which may be changed or disabled via WithPadding.

func (*Encoding) Decode

  1. func (enc *Encoding) Decode(dst, src []byte) (n int, err error)

Decode decodes src using the encoding enc. It writes at most DecodedLen(len(src)) bytes to dst and returns the number of bytes written. If src contains invalid base64 data, it will return the number of bytes successfully written and CorruptInputError. New line characters (\r and \n) are ignored.

func (*Encoding) DecodeString

  1. func (enc *Encoding) DecodeString(s string) ([]byte, error)

DecodeString returns the bytes represented by the base64 string s.

Example:

  1. str := "c29tZSBkYXRhIHdpdGggACBhbmQg77u/"
  2. data, err := base64.StdEncoding.DecodeString(str)
  3. if err != nil {
  4. fmt.Println("error:", err)
  5. return
  6. }
  7. fmt.Printf("%q\n", data)
  8. // Output:
  9. // "some data with \x00 and \ufeff"

func (*Encoding) DecodedLen

  1. func (enc *Encoding) DecodedLen(n int) int

DecodedLen returns the maximum length in bytes of the decoded data corresponding to n bytes of base64-encoded data.

func (*Encoding) Encode

  1. func (enc *Encoding) Encode(dst, src []byte)

Encode encodes src using the encoding enc, writing EncodedLen(len(src)) bytes to dst.

The encoding pads the output to a multiple of 4 bytes, so Encode is not appropriate for use on individual blocks of a large data stream. Use NewEncoder() instead.

func (*Encoding) EncodeToString

  1. func (enc *Encoding) EncodeToString(src []byte) string

EncodeToString returns the base64 encoding of src.

Example:

  1. data := []byte("any + old & data")
  2. str := base64.StdEncoding.EncodeToString(data)
  3. fmt.Println(str)
  4. // Output:
  5. // YW55ICsgb2xkICYgZGF0YQ==

func (*Encoding) EncodedLen

  1. func (enc *Encoding) EncodedLen(n int) int

EncodedLen returns the length in bytes of the base64 encoding of an input buffer of length n.

func (Encoding) Strict

  1. func (enc Encoding) Strict() *Encoding

Strict creates a new encoding identical to enc except with strict decoding enabled. In this mode, the decoder requires that trailing padding bits are zero, as described in RFC 4648 section 3.5.

func (Encoding) WithPadding

  1. func (enc Encoding) WithPadding(padding rune) *Encoding

WithPadding creates a new encoding identical to enc except with a specified padding character, or NoPadding to disable padding. The padding character must not be ‘\r’ or ‘\n’, must not be contained in the encoding’s alphabet and must be a rune equal or below ‘\xff’.