dispatch/vendor/gopkg.in/square/go-jose.v2/json
Ken-Håvard Lieng 47bc78b80a Update all dependencies 2018-08-31 03:57:19 +02:00
..
LICENSE Update all dependencies 2018-08-31 03:57:19 +02:00
README.md Update all dependencies 2018-08-31 03:57:19 +02:00
decode.go Update all dependencies 2018-08-31 03:57:19 +02:00
encode.go Update all dependencies 2018-08-31 03:57:19 +02:00
indent.go Update all dependencies 2018-08-31 03:57:19 +02:00
scanner.go Update all dependencies 2018-08-31 03:57:19 +02:00
stream.go Update all dependencies 2018-08-31 03:57:19 +02:00
tags.go Update all dependencies 2018-08-31 03:57:19 +02: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.