CBOR has the idea of encoding data items in binary (CBOR) and then embedding them in the object itself. This has some really big benefits around in-place decoding because bstr are length prefixed, and you can skip decoding the entire item versus having to seek through the stream.
CBOR has the idea of encoding data items in binary (CBOR) and then embedding them in the object itself. This has some really big benefits around in-place decoding because bstr are length prefixed, and you can skip decoding the entire item versus having to seek through the stream.