tree: 4868ff3ad213132d89128b3deb7df4d480b82a24 [path history] [tgz]
  1. testdata/
  2. bench_test.go
  3. decode.go
  4. decode_test.go
  5. encode.go
  6. encode_test.go
  7. indent.go
  8. LICENSE
  9. number_test.go
  10. README.md
  11. scanner.go
  12. scanner_test.go
  13. stream.go
  14. stream_test.go
  15. tagkey_test.go
  16. tags.go
  17. tags_test.go
json/README.md

Safe JSON

This repository contains a fork of the encoding/json package from Go 1.6.

The following changes were made:

  • Object deserialization uses case-sensitive member name matching instead of case-insensitive matching. This is to avoid differences in the interpretation of JOSE messages between go-jose and libraries written in other languages.
  • When deserializing a JSON object, we check for duplicate keys and reject the input whenever we detect a duplicate. Rather than trying to work with malformed data, we prefer to reject it right away.