mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
3f7f64a66b
Input: read and validate full UTF-8, both Basic Multilingual Plane and extended characters. Collate surrogate pairs as specified in RFC467. This ensures that UTF-8 strings that reach the application are always valid. Output: Assume UTF-8 strings provided for output are valid. The escaping was broken, fix this by not encoding UTF-8 characters with \u. Simply write them to the output stream as-is. This is the right thing to do. See https://www.ietf.org/rfc/rfc4627.txt: "JSON text SHALL be encoded in Unicode. The default encoding is UTF-8." Fixes #16. Also add tests for the new functionality. |
||
---|---|---|
.. | ||
build-aux/m4 | ||
gen | ||
include | ||
lib | ||
pc | ||
test | ||
.gitignore | ||
.travis.yml | ||
autogen.sh | ||
configure.ac | ||
COPYING | ||
Makefile.am | ||
README | ||
TODO |
UniValue A universal value object, with JSON encoding (output) and decoding (input). Built as a single dynamic RAII C++ object class, and no templates.