Documentation
¶
Index ¶
Constants ¶
View Source
const ( AlphabetBase16 = "1234567890abcdef" AlphabetBase62 = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" AlphabetBase64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BaseNDecoder ¶
type BaseNDecoder struct {
// contains filtered or unexported fields
}
BaseNDecoder is a generic base-N decoder.
func NewBaseNDecoder ¶
func NewBaseNDecoder(alphabet string) *BaseNDecoder
NewBaseNDecoder creates a new instance of BaseNDecoder using the provided alphabet.
type BaseNEncoder ¶
type BaseNEncoder struct {
// contains filtered or unexported fields
}
BaseNEncoder is a generic base-N encoder.
func NewBaseNEncoder ¶
func NewBaseNEncoder(alphabet string) *BaseNEncoder
NewBaseNEncoder creates a new instance of BaseNEncoder using the provided alphabet.
func (*BaseNEncoder) Encode ¶
func (e *BaseNEncoder) Encode(data []byte) string
Encode encodes the binary data into base-64 encoded strings.
Click to show internal directories.
Click to hide internal directories.