Versions in this module Expand all Collapse all v0 v0.1.4 Mar 24, 2026 Changes in this version + var ErrNonCanonicalSize = errors.New("rlp: non-canonical length encoding") + var ErrNonCanonicalValue = errors.New("rlp: single byte < 0x80 must be encoded without length prefix") + var ErrRlpMinusValue = errors.New("rlp: negative values are not encodable") + var ErrStringPrefix = errors.New("rlp: strings must start with 0x") + func Decode(buf []byte) ([]any, error) + func DecodeOne(buf []byte) (any, []byte, error) + func DecodeUint64(buf []byte) uint64 + func Encode(in ...any) ([]byte, error) + func EncodeValue(v any) ([]byte, error)