JWKS

public struct JWKS : Codable

The JSON Web Key Set (JWKS) of your Auth0 tenant.

  • The keys in the key set.

    Declaration

    Swift

    public let keys: [JWK]
  • Gets a key from the key set by its identifier (kid).

    Declaration

    Swift

    func key(id kid: String) -> JWK?