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 /.decodeMap[256]byteencode[64]bytepadCharrunestrictbool 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. DecodeString returns the bytes represented by the base64 string s. DecodedLen returns the maximum length in bytes of the decoded data
corresponding to n bytes of base64-encoded data. 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. EncodeToString returns the base64 encoding of src. EncodedLen returns the length in bytes of the base64 encoding
of an input buffer of length n. 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.
Note that the input is still malleable, as new line characters
(CR and LF) are still ignored. 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'.
Padding characters above '\x7f' are encoded as their exact byte value
rather than using the UTF-8 representation of the codepoint. decodeQuantum decodes up to 4 base64 bytes. The received parameters are
the destination buffer dst, the source buffer src and an index in the
source buffer si.
It returns the number of bytes read from src, the number of bytes written
to dst, and an error, if any.
func NewEncoding(encoder string) *Encoding
func Encoding.Strict() *Encoding
func Encoding.WithPadding(padding rune) *Encoding
func NewDecoder(enc *Encoding, r io.Reader) io.Reader
func NewEncoder(enc *Encoding, w io.Writer) io.WriteCloser
var RawStdEncoding *Encoding
var RawURLEncoding *Encoding
var StdEncoding *Encoding
var URLEncoding *Encoding
// buffered data waiting to be encodedenc*Encodingerrerror // number of bytes in buf // output bufferwio.Writer Close flushes any pending output from the encoder.
It is an error to call Write after calling Close.(*encoder) Write(p []byte) (n int, err error)
*encoder : internal/bisect.Writer
*encoder : io.Closer
*encoder : io.WriteCloser
*encoder : io.Writer
*encoder : crypto/tls.transcriptHash
Package-Level Functions (total 5, in which 3 are exported)
NewDecoder constructs a new base64 stream decoder.
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.
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 alphabet is treated as sequence of byte values
without any special treatment for multi-byte UTF-8.
The resulting Encoding uses the default padding character ('='),
which may be changed or disabled via WithPadding.
assemble32 assembles 4 base64 digits into 3 bytes.
Each digit comes from the decode map, and will be 0xff
if it came from an invalid character.
assemble64 assembles 8 base64 digits into 6 bytes.
Each digit comes from the decode map, and will be 0xff
if it came from an invalid character.
Package-Level Variables (total 4, all are exported)
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.
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.
StdEncoding is the standard base64 encoding, as defined in
RFC 4648.
URLEncoding is the alternate base64 encoding defined in RFC 4648.
It is typically used in URLs and file names.
Package-Level Constants (total 5, in which 2 are exported)
The pages are generated with Goldsv0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds.