frp/vendor/gopkg.in/square/go-jose.v2/json
Guy Lewin 6c6607ae68
feat: add multiple authentication methods, token and oidc.
token is the current token comparison, and oidc generates oidc token using client-credentials flow. in addition - add ping verification using the same method
2020-03-01 10:57:01 +08:00
..
decode.go feat: add multiple authentication methods, token and oidc. 2020-03-01 10:57:01 +08:00
encode.go feat: add multiple authentication methods, token and oidc. 2020-03-01 10:57:01 +08:00
indent.go feat: add multiple authentication methods, token and oidc. 2020-03-01 10:57:01 +08:00
LICENSE feat: add multiple authentication methods, token and oidc. 2020-03-01 10:57:01 +08:00
README.md feat: add multiple authentication methods, token and oidc. 2020-03-01 10:57:01 +08:00
scanner.go feat: add multiple authentication methods, token and oidc. 2020-03-01 10:57:01 +08:00
stream.go feat: add multiple authentication methods, token and oidc. 2020-03-01 10:57:01 +08:00
tags.go feat: add multiple authentication methods, token and oidc. 2020-03-01 10:57:01 +08: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.