packer-cn/vendor/gopkg.in/square/go-jose.v2/json
Adrien Delorme 4ebcbad332
update consul and vault dependencies (#9205)
* update consul and vault dependencies

* update triton sign call accorting to https://github.com/joyent/triton-go/pull/135

* Delete readme.md

* put back github.com/mitchellh/reflectwalk to v1.0.0 and explain why

* fix/fixer_pp_docker_tag_tags.go: simplify deduplication loop and keep seen/stable order
2020-05-11 15:26:01 -04:00
..
LICENSE update consul and vault dependencies (#9205) 2020-05-11 15:26:01 -04:00
README.md update consul and vault dependencies (#9205) 2020-05-11 15:26:01 -04:00
decode.go update consul and vault dependencies (#9205) 2020-05-11 15:26:01 -04:00
encode.go update consul and vault dependencies (#9205) 2020-05-11 15:26:01 -04:00
indent.go update consul and vault dependencies (#9205) 2020-05-11 15:26:01 -04:00
scanner.go update consul and vault dependencies (#9205) 2020-05-11 15:26:01 -04:00
stream.go update consul and vault dependencies (#9205) 2020-05-11 15:26:01 -04:00
tags.go update consul and vault dependencies (#9205) 2020-05-11 15:26:01 -04: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.