k3s/vendor/github.com/square/go-jose/json
Jeff Grafton 653d05c169 Regenerate all BUILD files in vendor/ from scratch using gazelle 2017-08-16 15:48:25 -07:00
..
BUILD Regenerate all BUILD files in vendor/ from scratch using gazelle 2017-08-16 15:48:25 -07:00
LICENSE Vendor github.com/square/go-jose@789a4c4bd4c118f7564954f441b29c153ccd6a96 2016-09-14 15:28:22 +01:00
README.md Vendor github.com/square/go-jose@789a4c4bd4c118f7564954f441b29c153ccd6a96 2016-09-14 15:28:22 +01:00
decode.go Vendor github.com/square/go-jose@789a4c4bd4c118f7564954f441b29c153ccd6a96 2016-09-14 15:28:22 +01:00
encode.go Vendor github.com/square/go-jose@789a4c4bd4c118f7564954f441b29c153ccd6a96 2016-09-14 15:28:22 +01:00
indent.go Vendor github.com/square/go-jose@789a4c4bd4c118f7564954f441b29c153ccd6a96 2016-09-14 15:28:22 +01:00
scanner.go Vendor github.com/square/go-jose@789a4c4bd4c118f7564954f441b29c153ccd6a96 2016-09-14 15:28:22 +01:00
stream.go Vendor github.com/square/go-jose@789a4c4bd4c118f7564954f441b29c153ccd6a96 2016-09-14 15:28:22 +01:00
tags.go Vendor github.com/square/go-jose@789a4c4bd4c118f7564954f441b29c153ccd6a96 2016-09-14 15:28:22 +01:00

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.