Skip to content

Allow decoding of [String] JWK parameters #117

Open
@ghost

Description

Currently, we ignore (via #116) the JWK parameters X509CertificateChain and keyOperations because their type is [String]. This is because we only decode into a [String: String] dictionary at the moment. We should enable the decoding of String and [String] to be standard compliant. The relevant code is in RSAKeysCodable.swift and in the JWK types themselves e.g. in RSAPublicKey.swift.

Possible parameters and their types are listed in RFC-7517:

  • "kty": String
  • "use": String
  • "key_ops": [String]
  • "alg": String
  • "kid": String
  • "x5u": URI
  • "x5c": [String]
  • "x5t": String
  • "x5t#S256": String

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething is not working righthelp wantedWe'd love for someone from the community to help out here

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions