cloudflared-mirror/vendor/github.com/go-jose/go-jose/v4/json
Devin Carr 687682120c TUN-8333: Bump go-jose dependency to v4 2024-04-10 09:49:40 -07:00
..
LICENSE TUN-8333: Bump go-jose dependency to v4 2024-04-10 09:49:40 -07:00
README.md TUN-8333: Bump go-jose dependency to v4 2024-04-10 09:49:40 -07:00
decode.go TUN-8333: Bump go-jose dependency to v4 2024-04-10 09:49:40 -07:00
encode.go TUN-8333: Bump go-jose dependency to v4 2024-04-10 09:49:40 -07:00
indent.go TUN-8333: Bump go-jose dependency to v4 2024-04-10 09:49:40 -07:00
scanner.go TUN-8333: Bump go-jose dependency to v4 2024-04-10 09:49:40 -07:00
stream.go TUN-8333: Bump go-jose dependency to v4 2024-04-10 09:49:40 -07:00
tags.go TUN-8333: Bump go-jose dependency to v4 2024-04-10 09:49:40 -07: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.