cbor-java icon indicating copy to clipboard operation
cbor-java copied to clipboard

Java implementation of RFC 7049: Concise Binary Object Representation (CBOR)

Results 41 cbor-java issues
Sort by recently updated
recently updated
newest added

Bumps [maven-site-plugin](https://github.com/apache/maven-site-plugin) from 3.12.0 to 3.12.1. Commits ecae28f [maven-release-plugin] prepare release maven-site-plugin-3.12.1 d98569b [MSITE-908] Upgrade Maven Reporting API to 3.1.1 bd3376f [MSITE-901] If precending standalone report has been run, site:jar...

dependencies
java

The README in this repo links to [the JavaDoc documentation here](http://c-rack.github.io/cbor-java/apidocs/index.html). That documentation does not say anything about `DataItem` having a `getTag` method; however, it does, at least in version...

waiting for next release

The "Maven Dependency" section of README.md says to use 0.9 but I can't find a v0.9 tag anywhere so I'm wondering if there's even been a 0.9 release? If I...

waiting for next release

Quite a few embedded libraries do not like indefinite-sized CBOR maps (or arrays for that matter). For demonstration, I created a map with: ```java new CborEncoder(baos).encode(new CborBuilder() .startMap(4) .put("Timestamp", 123456789)...

enhancement
java
waiting for next release

Hi Team, According a specially crafted message, the library will try to allocate a message that is way above the memory capacity. For a CBOR array input. The code was...

enhancement
security
Waiting for answer

I'm trying to use cbor-java to implement webauth. In this case, I need to get a COSE from a subset of a binary field in a CBOR object. The code...

enhancement
java
Waiting for answer

Hi! I was wondering if you would be interested in getting cbor-java fuzzed by OSS-Fuzz? Fuzzing is a technique for stress-testing applications and OSS-Fuzz is a service run by Google...

security
Waiting for answer

Please show in your example how to extract the encode data. You only show `for(DataItem dataItem : dataItems) { // process data item }` This is not very helpful. Please...

enhancement

Hi, I still didn't figure out how to decode CBOR to primitive data types. Can you give me an example? I have been trying this: ByteArrayInputStream bais = new ByteArrayInputStream(data);...

question

It would be nice if streaming encoding similar to [Jackson](http://wiki.fasterxml.com/JacksonInFiveMinutes#Streaming_API_Example) is added. Important for me would be that I could stream the elements of a ByteString as well, since these...

enhancement