ceph-csi/vendor/gopkg.in/square/go-jose.v2/json
dependabot[bot] ba40da7e36 rebase: Bump github.com/hashicorp/vault from 1.4.2 to 1.9.9
Bumps [github.com/hashicorp/vault](https://github.com/hashicorp/vault) from 1.4.2 to 1.9.9.
- [Release notes](https://github.com/hashicorp/vault/releases)
- [Changelog](https://github.com/hashicorp/vault/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hashicorp/vault/compare/v1.4.2...v1.9.9)

---
updated-dependencies:
- dependency-name: github.com/hashicorp/vault
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-03-09 10:59:45 +00:00
..
decode.go rebase: Bump github.com/hashicorp/vault from 1.4.2 to 1.9.9 2023-03-09 10:59:45 +00:00
encode.go vendor update for E2E framework 2019-06-04 11:39:42 +05:30
indent.go vendor update for E2E framework 2019-06-04 11:39:42 +05:30
LICENSE vendor update for E2E framework 2019-06-04 11:39:42 +05:30
README.md Migrate from dep to go module 2020-03-17 10:44:07 +00:00
scanner.go vendor update for E2E framework 2019-06-04 11:39:42 +05:30
stream.go rebase: Bump github.com/hashicorp/vault from 1.4.2 to 1.9.9 2023-03-09 10:59:45 +00:00
tags.go vendor update for E2E framework 2019-06-04 11:39:42 +05:30

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.