Versions in this module Expand all Collapse all v1 v1.3.3 Oct 2, 2014 v1.3.1 Aug 21, 2014 Changes in this version + var HexEncoding = NewEncoding(encodeHex) + var StdEncoding = NewEncoding(encodeStd) + func NewDecoder(enc *Encoding, r io.Reader) io.Reader + func NewEncoder(enc *Encoding, w io.Writer) io.WriteCloser + type CorruptInputError int64 + func (e CorruptInputError) Error() string + type Encoding struct + func NewEncoding(encoder string) *Encoding + func (enc *Encoding) Decode(dst, src []byte) (n int, err error) + func (enc *Encoding) DecodeString(s string) ([]byte, error) + func (enc *Encoding) DecodedLen(n int) int + func (enc *Encoding) Encode(dst, src []byte) + func (enc *Encoding) EncodeToString(src []byte) string + func (enc *Encoding) EncodedLen(n int) int