package
1.24.4
Repository: https://pkg.go.dev/std
Documentation: pkg.go.dev

# Functions

NewDecoder constructs a new base64 stream decoder.
NewEncoder returns a new base64 stream encoder.
NewEncoding returns a new padded Encoding defined by the given alphabet, which must be a 64-byte string that contains unique byte values and does not contain the padding character or CR / LF ('\r', '\n').

# Constants

No padding.
Standard padding character.

# Variables

RawStdEncoding is the standard raw, unpadded base64 encoding, as defined in RFC 4648 section 3.2.
RawURLEncoding is the unpadded alternate base64 encoding defined in RFC 4648.
StdEncoding is the standard base64 encoding, as defined in RFC 4648.
URLEncoding is the alternate base64 encoding defined in RFC 4648.

# Structs

An Encoding is a radix 64 encoding/decoding scheme, defined by a 64-character alphabet.

# Type aliases

No description provided by the author