You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
710leo 2d9287805e
add vendor
4 years ago
..
LICENSE add vendor 4 years ago
README.md add vendor 4 years ago
decode.go add vendor 4 years ago
encode.go add vendor 4 years ago
indent.go add vendor 4 years ago
scanner.go add vendor 4 years ago
stream.go add vendor 4 years ago
tags.go add vendor 4 years ago

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.