CborConformanceMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines supported conformance modes for encoding and decoding CBOR data.
public enum class CborConformanceMode
public enum CborConformanceMode
type CborConformanceMode =
Public Enum CborConformanceMode
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Lax | 0 | Ensures that the CBOR data is well-formed, as specified in RFC7049. |
Strict | 1 | Ensures that the CBOR data adheres to strict mode, as specified in RFC7049 section 3.10. Extends lax conformance with the following requirements:
|
Canonical | 2 | Ensures that the CBOR data is canonical, as specified in RFC7049 section 3.9. Extends strict conformance with the following requirements:
|
Ctap2Canonical | 3 | Ensures that the CBOR data is canonical, as specified by the CTAP v2.0 standard, section 6. Extends strict conformance with the following requirements:
|