From 9e3c08db40b8916968b9f30096c7be3f00ce9647 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:44:51 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- dom/webauthn/cbor-cpp/README.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 dom/webauthn/cbor-cpp/README.md (limited to 'dom/webauthn/cbor-cpp/README.md') diff --git a/dom/webauthn/cbor-cpp/README.md b/dom/webauthn/cbor-cpp/README.md new file mode 100644 index 0000000000..015cad3325 --- /dev/null +++ b/dom/webauthn/cbor-cpp/README.md @@ -0,0 +1,35 @@ +cbor-cpp +======== + +[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/naphaso/cbor-cpp?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) + +CBOR C++ serialization library + +Just a simple SAX-like Concise Binary Object Representation (CBOR). + +[http://tools.ietf.org/html/rfc7049](http://tools.ietf.org/html/rfc7049) + +#### Examples + +```C++ + cbor::output_dynamic output; + + { //encoding + cbor::encoder encoder(output); + encoder.write_array(5); + { + encoder.write_int(123); + encoder.write_string("bar"); + encoder.write_int(321); + encoder.write_int(321); + encoder.write_string("foo"); + } + } + + { // decoding + cbor::input input(output.data(), output.size()); + cbor::listener_debug listener; + cbor::decoder decoder(input, listener); + decoder.run(); + } +``` -- cgit v1.2.3