Versions in this module Expand all Collapse all v2 v2.0.0 Nov 15, 2024 Changes in this version + func Diagnose(data []byte) (string, error) + func DiagnoseFirst(data []byte) (diagNotation string, rest []byte, err error) + func Marshal(v interface{}) ([]byte, error) + func MarshalToBuffer(v interface{}, buf *bytes.Buffer) error + func Unmarshal(data []byte, v interface{}) error + func UnmarshalFirst(data []byte, v interface{}) (rest []byte, err error) + func Valid(data []byte) error + func Wellformed(data []byte) error + func WithRejectedSimpleValue(sv SimpleValue) func(*SimpleValueRegistry) error + type BigIntConvertMode int + const BigIntConvertNone + const BigIntConvertReject + const BigIntConvertShortest + type BigIntDecMode int + const BigIntDecodePointer + const BigIntDecodeValue + type BignumTagMode int + const BignumTagAllowed + const BignumTagForbidden + type BinaryMarshalerMode int + const BinaryMarshalerByteString + const BinaryMarshalerNone + type BinaryUnmarshalerMode int + const BinaryUnmarshalerByteString + const BinaryUnmarshalerNone + type ByteArrayMode int + const ByteArrayToArray + const ByteArrayToByteSlice + type ByteSliceLaterFormatMode int + const ByteSliceLaterFormatBase16 + const ByteSliceLaterFormatBase64 + const ByteSliceLaterFormatBase64URL + const ByteSliceLaterFormatNone + type ByteString string + func (bs *ByteString) UnmarshalCBOR(data []byte) error + func (bs ByteString) Bytes() []byte + func (bs ByteString) MarshalCBOR() ([]byte, error) + type ByteStringEncoding uint8 + const ByteStringBase16Encoding + const ByteStringBase32Encoding + const ByteStringBase32HexEncoding + const ByteStringBase64Encoding + type ByteStringExpectedFormatError struct + func (e *ByteStringExpectedFormatError) Error() string + func (e *ByteStringExpectedFormatError) Unwrap() error + type ByteStringExpectedFormatMode int + const ByteStringExpectedBase16 + const ByteStringExpectedBase64 + const ByteStringExpectedBase64URL + const ByteStringExpectedFormatNone + type ByteStringToStringMode int + const ByteStringToStringAllowed + const ByteStringToStringAllowedWithExpectedLaterEncoding + const ByteStringToStringForbidden + type ByteStringToTimeMode int + const ByteStringToTimeAllowed + const ByteStringToTimeForbidden + type DecMode interface + DecOptions func() DecOptions + NewDecoder func(r io.Reader) *Decoder + Unmarshal func(data []byte, v interface{}) error + UnmarshalFirst func(data []byte, v interface{}) (rest []byte, err error) + Valid func(data []byte) error + Wellformed func(data []byte) error + type DecOptions struct + BigIntDec BigIntDecMode + BignumTag BignumTagMode + BinaryUnmarshaler BinaryUnmarshalerMode + ByteStringExpectedFormat ByteStringExpectedFormatMode + ByteStringToString ByteStringToStringMode + ByteStringToTime ByteStringToTimeMode + DefaultByteStringType reflect.Type + DefaultMapType reflect.Type + DupMapKey DupMapKeyMode + ExtraReturnErrors ExtraDecErrorCond + FieldNameByteString FieldNameByteStringMode + FieldNameMatching FieldNameMatchingMode + IndefLength IndefLengthMode + Inf InfMode + IntDec IntDecMode + MapKeyByteString MapKeyByteStringMode + MaxArrayElements int + MaxMapPairs int + MaxNestedLevels int + NaN NaNMode + SimpleValues *SimpleValueRegistry + TagsMd TagsMode + TimeTag DecTagMode + TimeTagToAny TimeTagToAnyMode + UTF8 UTF8Mode + UnrecognizedTagToAny UnrecognizedTagToAnyMode + func (opts DecOptions) DecMode() (DecMode, error) + func (opts DecOptions) DecModeWithSharedTags(tags TagSet) (DecMode, error) + func (opts DecOptions) DecModeWithTags(tags TagSet) (DecMode, error) + type DecTagMode int + const DecTagIgnored + const DecTagOptional + const DecTagRequired + type Decoder struct + func NewDecoder(r io.Reader) *Decoder + func (dec *Decoder) Buffered() io.Reader + func (dec *Decoder) Decode(v interface{}) error + func (dec *Decoder) NumBytesRead() int + func (dec *Decoder) Skip() error + type DiagMode interface + DiagOptions func() DiagOptions + Diagnose func([]byte) (string, error) + DiagnoseFirst func([]byte) (string, []byte, error) + type DiagOptions struct + ByteStringEmbeddedCBOR bool + ByteStringEncoding ByteStringEncoding + ByteStringHexWhitespace bool + ByteStringText bool + CBORSequence bool + FloatPrecisionIndicator bool + MaxArrayElements int + MaxMapPairs int + MaxNestedLevels int + func (opts DiagOptions) DiagMode() (DiagMode, error) + type DupMapKeyError struct + Index int + Key interface{} + func (e *DupMapKeyError) Error() string + type DupMapKeyMode int + const DupMapKeyEnforcedAPF + const DupMapKeyQuiet + type EncMode interface + EncOptions func() EncOptions + Marshal func(v interface{}) ([]byte, error) + NewEncoder func(w io.Writer) *Encoder + type EncOptions struct + BigIntConvert BigIntConvertMode + BinaryMarshaler BinaryMarshalerMode + ByteArray ByteArrayMode + ByteSliceLaterFormat ByteSliceLaterFormatMode + FieldName FieldNameMode + IndefLength IndefLengthMode + InfConvert InfConvertMode + NaNConvert NaNConvertMode + NilContainers NilContainersMode + OmitEmpty OmitEmptyMode + ShortestFloat ShortestFloatMode + Sort SortMode + String StringMode + TagsMd TagsMode + Time TimeMode + TimeTag EncTagMode + func CTAP2EncOptions() EncOptions + func CanonicalEncOptions() EncOptions + func CoreDetEncOptions() EncOptions + func PreferredUnsortedEncOptions() EncOptions + func (opts EncOptions) EncMode() (EncMode, error) + func (opts EncOptions) EncModeWithSharedTags(tags TagSet) (EncMode, error) + func (opts EncOptions) EncModeWithTags(tags TagSet) (EncMode, error) + func (opts EncOptions) UserBufferEncMode() (UserBufferEncMode, error) + func (opts EncOptions) UserBufferEncModeWithSharedTags(tags TagSet) (UserBufferEncMode, error) + func (opts EncOptions) UserBufferEncModeWithTags(tags TagSet) (UserBufferEncMode, error) + type EncTagMode int + const EncTagNone + const EncTagRequired + type Encoder struct + func NewEncoder(w io.Writer) *Encoder + func (enc *Encoder) Encode(v interface{}) error + func (enc *Encoder) EndIndefinite() error + func (enc *Encoder) StartIndefiniteArray() error + func (enc *Encoder) StartIndefiniteByteString() error + func (enc *Encoder) StartIndefiniteMap() error + func (enc *Encoder) StartIndefiniteTextString() error + type ExtraDecErrorCond uint + const ExtraDecErrorNone + const ExtraDecErrorUnknownField + type ExtraneousDataError struct + func (e *ExtraneousDataError) Error() string + type FieldNameByteStringMode int + const FieldNameByteStringAllowed + const FieldNameByteStringForbidden + type FieldNameMatchingMode int + const FieldNameMatchingCaseSensitive + const FieldNameMatchingPreferCaseSensitive + type FieldNameMode int + const FieldNameToByteString + const FieldNameToTextString + type InadmissibleTagContentTypeError struct + func (e *InadmissibleTagContentTypeError) Error() string + type IndefLengthMode int + const IndefLengthAllowed + const IndefLengthForbidden + type IndefiniteLengthError struct + func (e *IndefiniteLengthError) Error() string + type InfConvertMode int + const InfConvertFloat16 + const InfConvertNone + const InfConvertReject + type InfMode int + const InfDecodeAllowed + const InfDecodeForbidden + type IntDecMode int + const IntDecConvertNone + const IntDecConvertSigned + const IntDecConvertSignedOrBigInt + const IntDecConvertSignedOrFail + type InvalidMapKeyTypeError struct + GoType string + func (e *InvalidMapKeyTypeError) Error() string + type InvalidUnmarshalError struct + func (e *InvalidUnmarshalError) Error() string + type MapEntry struct + Key any + Value any + type MapKeyByteStringMode int + const MapKeyByteStringAllowed + const MapKeyByteStringForbidden + type Marshaler interface + MarshalCBOR func() ([]byte, error) + type MarshalerError struct + func (e *MarshalerError) Error() string + func (e *MarshalerError) Unwrap() error + type MaxArrayElementsError struct + func (e *MaxArrayElementsError) Error() string + type MaxMapPairsError struct + func (e *MaxMapPairsError) Error() string + type MaxNestedLevelError struct + func (e *MaxNestedLevelError) Error() string + type NaNConvertMode int + const NaNConvert7e00 + const NaNConvertNone + const NaNConvertPreserveSignal + const NaNConvertQuiet + const NaNConvertReject + type NaNMode int + const NaNDecodeAllowed + const NaNDecodeForbidden + type NilContainersMode int + const NilContainerAsEmpty + const NilContainerAsNull + type OmitEmptyMode int + const OmitEmptyCBORValue + const OmitEmptyGoValue + type RawMessage []byte + func (m *RawMessage) UnmarshalCBOR(data []byte) error + func (m RawMessage) MarshalCBOR() ([]byte, error) + type RawTag struct + Content RawMessage + Number uint64 + func (t *RawTag) UnmarshalCBOR(data []byte) error + func (t RawTag) MarshalCBOR() ([]byte, error) + type SemanticError struct + func (e *SemanticError) Error() string + type ShortestFloatMode int + const ShortestFloat16 + const ShortestFloatNone + type SimpleValue uint8 + func (sv *SimpleValue) UnmarshalCBOR(data []byte) error + func (sv SimpleValue) MarshalCBOR() ([]byte, error) + type SimpleValueRegistry struct + func NewSimpleValueRegistryFromDefaults(fns ...func(*SimpleValueRegistry) error) (*SimpleValueRegistry, error) + type SortMode int + const SortBytewiseLexical + const SortCTAP2 + const SortCanonical + const SortCoreDeterministic + const SortFastShuffle + const SortLengthFirst + const SortNone + type StringMode int + const StringToByteString + const StringToTextString + type SyntaxError struct + func (e *SyntaxError) Error() string + type Tag struct + Content interface{} + Number uint64 + type TagOptions struct + DecTag DecTagMode + EncTag EncTagMode + type TagSet interface + Add func(opts TagOptions, contentType reflect.Type, num uint64, nestedNum ...uint64) error + Remove func(contentType reflect.Type) + func NewTagSet() TagSet + type TagsMdError struct + func (e *TagsMdError) Error() string + type TagsMode int + const TagsAllowed + const TagsForbidden + type TimeMode int + const TimeRFC3339 + const TimeRFC3339Nano + const TimeUnix + const TimeUnixDynamic + const TimeUnixMicro + type TimeTagToAnyMode int + const TimeTagToRFC3339 + const TimeTagToRFC3339Nano + const TimeTagToTime + type UTF8Mode int + const UTF8DecodeInvalid + const UTF8RejectInvalid + type UnacceptableDataItemError struct + CBORType string + Message string + func (e UnacceptableDataItemError) Error() string + type UnknownFieldError struct + Index int + func (e *UnknownFieldError) Error() string + type UnmarshalTypeError struct + CBORType string + GoType string + StructFieldName string + func (e *UnmarshalTypeError) Error() string + type Unmarshaler interface + UnmarshalCBOR func([]byte) error + type UnrecognizedTagToAnyMode int + const UnrecognizedTagContentToAny + const UnrecognizedTagNumAndContentToAny + type UnsupportedTypeError struct + Type reflect.Type + func (e *UnsupportedTypeError) Error() string + type UnsupportedValueError struct + func (e *UnsupportedValueError) Error() string + type UserBufferEncMode interface + MarshalToBuffer func(v interface{}, buf *bytes.Buffer) error + type WrongTagError struct + RegisteredTagNum []uint64 + RegisteredType reflect.Type + TagNum []uint64 + func (e *WrongTagError) Error() string