-
Does this support canonical cbor like the Go implementation does?
-
According to https://tools.ietf.org/html/rfc7049#section-3.9
> The keys in every map must be sorted lowest value to highest.
> Sorting is performed on the bytes of the representation of the key…
-
The documentation link (http://hildjj.github.io/node-cbor/doc/) gives a 404.
-
When dumping cbor the function utf8EscapedDump can over read the input buffer for some inputs. To reproduce the issue, find the attached zip file, unzip it, then run
`valgrind bin/cbordump repro.cbo…
-
Can I have multiple arrays at the same time?
For instance does the following sequence work?
cbor_encoder_create_map(&stream, &map, 2);
// Create first array.
cbor_encode_text_stringz(&map, "array1")…
-
I couldn't drill down on this yet, but using coursier 1.0.0-RC1 on this project: https://github.com/guardian/frontend/ leads to the following compilation error:
```
[info] Compiling 490 Scala sour…
-
As mentioned in #1 I've reviewed the code for correctness regarding the IPLD spec.
> Currently, all keys are being sorted. It is yet to be
> determined if this is compatible with other implementatio…
-
I'm a bit confused by `CBOR.Term` module. It seems to be used only for testing that the optimized and reference implementations do the same thing. But then I'd expect it to be inside the `tests/` dire…
-
I was wondering if it would make sense to add optional functionality where the input of encoding and output of decoding are Java objects like List, Map, etc. That would make it easier to use the libra…
-
`encoding/json` uses `map[string]interface{}` which is incompatible with `map[interface{}]interface{}`. parsing cbor and encoding to json is not happy:
```
json: unsupported type: map[interface {}]in…