type encoding/base64.Encoding

20 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#L412: func (enc *Encoding) AppendDecode(dst, src []byte) ([]byte, error) {
		base64.go#L426: func (enc *Encoding) DecodeString(s string) ([]byte, error) {
		base64.go#L435: 	enc     *Encoding
		base64.go#L514: func (enc *Encoding) Decode(dst, src []byte) (n int, err error) {
		base64.go#L644: func NewDecoder(enc *Encoding, r io.Reader) io.Reader {
		base64.go#L650: func (enc *Encoding) DecodedLen(n int) int {