csi-driver-nfs/vendor/gopkg.in/square/go-jose.v2/json
Mayank Shah 21db7fafe6 Update vendor directory
Signed-off-by: Mayank Shah <mayankshah1614@gmail.com>
2020-11-03 23:56:05 +05:30
..
LICENSE Update vendor directory 2020-11-03 23:56:05 +05:30
README.md Update vendor directory 2020-11-03 23:56:05 +05:30
decode.go Update vendor directory 2020-11-03 23:56:05 +05:30
encode.go Update vendor directory 2020-11-03 23:56:05 +05:30
indent.go Update vendor directory 2020-11-03 23:56:05 +05:30
scanner.go Update vendor directory 2020-11-03 23:56:05 +05:30
stream.go Update vendor directory 2020-11-03 23:56:05 +05:30
tags.go Update vendor directory 2020-11-03 23:56:05 +05:30

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.