from_cbor.cpp 546 B

1234567891011121314151617181920
  1. #include <iostream>
  2. #include <iomanip>
  3. #include <nlohmann/json.hpp>
  4. using json = nlohmann::json;
  5. int main()
  6. {
  7. // create byte vector
  8. std::vector<std::uint8_t> v = {0xa2, 0x67, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63,
  9. 0x74, 0xf5, 0x66, 0x73, 0x63, 0x68, 0x65, 0x6d,
  10. 0x61, 0x00
  11. };
  12. // deserialize it with CBOR
  13. json j = json::from_cbor(v);
  14. // print the deserialized JSON value
  15. std::cout << std::setw(2) << j << std::endl;
  16. }