type encoding/base64.Encoding
22 uses
encoding/base64 (current package)
base64.go#L24: type Encoding struct {
base64.go#L64: func NewEncoding(encoder string) *Encoding {
base64.go#L69: e := new(Encoding)
base64.go#L96: func (enc Encoding) WithPadding(padding rune) *Encoding {
base64.go#L113: func (enc Encoding) Strict() *Encoding {
base64.go#L145: func (enc *Encoding) Encode(dst, src []byte) {
base64.go#L198: func (enc *Encoding) AppendEncode(dst, src []byte) []byte {
base64.go#L206: func (enc *Encoding) EncodeToString(src []byte) string {
base64.go#L214: enc *Encoding
base64.go#L284: func NewEncoder(enc *Encoding, w io.Writer) io.WriteCloser {
base64.go#L290: func (enc *Encoding) EncodedLen(n int) int {
base64.go#L312: func (enc *Encoding) decodeQuantum(dst, src []byte, si int) (nsi, n int, err error) {
base64.go#L413: func (enc *Encoding) AppendDecode(dst, src []byte) ([]byte, error) {
base64.go#L429: func (enc *Encoding) DecodeString(s string) ([]byte, error) {
base64.go#L438: enc *Encoding
base64.go#L518: func (enc *Encoding) Decode(dst, src []byte) (n int, err error) {
base64.go#L648: func NewDecoder(enc *Encoding, r io.Reader) io.Reader {
base64.go#L654: func (enc *Encoding) DecodedLen(n int) int {
go.pact.im/x/phcformat/encode
encode.go#L217: func base64Append(e *base64.Encoding, dst, src []byte) []byte {
go.pact.im/x/zapjournal
append.go#L41: func base64Append(e *base64.Encoding, dst, src []byte) []byte {