base64

package
v0.0.0-...-fb30d79 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 1, 2024 License: MIT Imports: 3 Imported by: 0

Documentation

Overview

Package base64 提供原生包 base64 的简单扩展封装

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Encoding

type Encoding interface {
	Decode(dst, src []byte) (n int, err error)
	DecodeString(s string) ([]byte, error)
	DecodedLen(n int) int
	Encode(dst, src []byte)
	EncodeToString(src []byte) string
	EncodedLen(n int) int
}

Encoding 表示 base64 Encoder

var StdEncoding Encoding = stdEncodeDecoder{}

StdEncoding 大致等同于 encoding/base64.StdEncoder, 不同的是在 Decode 的时候, 会自动补齐 padding

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL