type encoding/base64.Encoding

18 uses

	encoding/base64 (current package)
		base64.go#L23: type Encoding struct {
		base64.go#L43: func NewEncoding(encoder string) *Encoding {
		base64.go#L53: 	e := new(Encoding)
		base64.go#L71: func (enc Encoding) WithPadding(padding rune) *Encoding {
		base64.go#L92: func (enc Encoding) Strict() *Encoding {
		base64.go#L125: func (enc *Encoding) Encode(dst, src []byte) {
		base64.go#L177: func (enc *Encoding) EncodeToString(src []byte) string {
		base64.go#L185: 	enc  *Encoding
		base64.go#L257: func NewEncoder(enc *Encoding, w io.Writer) io.WriteCloser {
		base64.go#L263: func (enc *Encoding) EncodedLen(n int) int {
		base64.go#L285: func (enc *Encoding) decodeQuantum(dst, src []byte, si int) (nsi, n int, err error) {
		base64.go#L383: func (enc *Encoding) DecodeString(s string) ([]byte, error) {
		base64.go#L392: 	enc     *Encoding
		base64.go#L471: func (enc *Encoding) Decode(dst, src []byte) (n int, err error) {
		base64.go#L601: func NewDecoder(enc *Encoding, r io.Reader) io.Reader {
		base64.go#L607: func (enc *Encoding) DecodedLen(n int) int {