gotosocial/vendor/gopkg.in/square/go-jose.v2/json
Tobi Smethurst 98263a7de6
Grand test fixup (#138)
* start fixing up tests

* fix up tests + automate with drone

* fiddle with linting

* messing about with drone.yml

* some more fiddling

* hmmm

* add cache

* add vendor directory

* verbose

* ci updates

* update some little things

* update sig
2021-08-12 21:03:24 +02:00
..
decode.go Grand test fixup (#138) 2021-08-12 21:03:24 +02:00
encode.go Grand test fixup (#138) 2021-08-12 21:03:24 +02:00
indent.go Grand test fixup (#138) 2021-08-12 21:03:24 +02:00
LICENSE Grand test fixup (#138) 2021-08-12 21:03:24 +02:00
README.md Grand test fixup (#138) 2021-08-12 21:03:24 +02:00
scanner.go Grand test fixup (#138) 2021-08-12 21:03:24 +02:00
stream.go Grand test fixup (#138) 2021-08-12 21:03:24 +02:00
tags.go Grand test fixup (#138) 2021-08-12 21:03:24 +02: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.