debian-forge-composer/vendor/github.com/go-jose/go-jose/v4/json
2024-08-07 12:06:28 +02:00
..
decode.go go.mod: update osbuild/images to v0.74.0 2024-08-07 12:06:28 +02:00
encode.go go.mod: update osbuild/images to v0.74.0 2024-08-07 12:06:28 +02:00
indent.go go.mod: update osbuild/images to v0.74.0 2024-08-07 12:06:28 +02:00
LICENSE go.mod: update osbuild/images to v0.74.0 2024-08-07 12:06:28 +02:00
README.md go.mod: update osbuild/images to v0.74.0 2024-08-07 12:06:28 +02:00
scanner.go go.mod: update osbuild/images to v0.74.0 2024-08-07 12:06:28 +02:00
stream.go go.mod: update osbuild/images to v0.74.0 2024-08-07 12:06:28 +02:00
tags.go go.mod: update osbuild/images to v0.74.0 2024-08-07 12:06:28 +02:00

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.