karmada/vendor/gopkg.in/square/go-jose.v2/json
lonelyCZ 4b4ca14345 Implement karmadactl register for joining clusters with PULL mode
Signed-off-by: lonelyCZ <531187475@qq.com>
2022-08-23 15:41:48 +08:00
..
LICENSE Implement karmadactl register for joining clusters with PULL mode 2022-08-23 15:41:48 +08:00
README.md Implement karmadactl register for joining clusters with PULL mode 2022-08-23 15:41:48 +08:00
decode.go Implement karmadactl register for joining clusters with PULL mode 2022-08-23 15:41:48 +08:00
encode.go Implement karmadactl register for joining clusters with PULL mode 2022-08-23 15:41:48 +08:00
indent.go Implement karmadactl register for joining clusters with PULL mode 2022-08-23 15:41:48 +08:00
scanner.go Implement karmadactl register for joining clusters with PULL mode 2022-08-23 15:41:48 +08:00
stream.go Implement karmadactl register for joining clusters with PULL mode 2022-08-23 15:41:48 +08:00
tags.go Implement karmadactl register for joining clusters with PULL mode 2022-08-23 15:41:48 +08: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.