distribution/vendor/gopkg.in/square/go-jose.v1/json
Derek McGowan b22c6b7a4e Update vendor directory to match expectation of vndr tool
Adds READMEs and enforces vendor is done at repository root

Signed-off-by: Derek McGowan <derek@mcgstyle.net>
2017-04-10 12:07:32 -07:00
..
LICENSE Replace godep with vndr 2016-11-23 15:07:06 -08:00
README.md Update vendor directory to match expectation of vndr tool 2017-04-10 12:07:32 -07:00
decode.go Replace godep with vndr 2016-11-23 15:07:06 -08:00
encode.go Replace godep with vndr 2016-11-23 15:07:06 -08:00
indent.go Replace godep with vndr 2016-11-23 15:07:06 -08:00
scanner.go Replace godep with vndr 2016-11-23 15:07:06 -08:00
stream.go Replace godep with vndr 2016-11-23 15:07:06 -08:00
tags.go Replace godep with vndr 2016-11-23 15:07:06 -08: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.