This repository has been archived on 2022-08-17. You can view files and clone it, but cannot push or open issues or pull requests.
dex/vendor/gopkg.in/square/go-jose.v2/json
2016-07-26 15:51:24 -07:00
..
testdata initial commit 2016-07-26 15:51:24 -07:00
bench_test.go initial commit 2016-07-26 15:51:24 -07:00
decode.go initial commit 2016-07-26 15:51:24 -07:00
decode_test.go initial commit 2016-07-26 15:51:24 -07:00
encode.go initial commit 2016-07-26 15:51:24 -07:00
encode_test.go initial commit 2016-07-26 15:51:24 -07:00
indent.go initial commit 2016-07-26 15:51:24 -07:00
LICENSE initial commit 2016-07-26 15:51:24 -07:00
number_test.go initial commit 2016-07-26 15:51:24 -07:00
README.md initial commit 2016-07-26 15:51:24 -07:00
scanner.go initial commit 2016-07-26 15:51:24 -07:00
scanner_test.go initial commit 2016-07-26 15:51:24 -07:00
stream.go initial commit 2016-07-26 15:51:24 -07:00
stream_test.go initial commit 2016-07-26 15:51:24 -07:00
tagkey_test.go initial commit 2016-07-26 15:51:24 -07:00
tags.go initial commit 2016-07-26 15:51:24 -07:00
tags_test.go initial commit 2016-07-26 15:51:24 -07:00

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.