JWK

public struct JWK : Codable

Cryptographic public key of your Auth0 tenant.

See

JWKS
  • The type of key.

    Declaration

    Swift

    public let keyType: String
  • The unique identifier of the key.

    Declaration

    Swift

    public let keyId: String?
  • How the key is meant to be used.

    Declaration

    Swift

    public let usage: String?
  • The algorithm of the key.

    Declaration

    Swift

    public let algorithm: String?
  • The URL of the x.509 certificate.

    Declaration

    Swift

    public let certUrl: String?
  • The thumbprint of the x.509 certificate (SHA-1 thumbprint).

    Declaration

    Swift

    public let certThumbprint: String?
  • The x.509 certificate chain.

    Declaration

    Swift

    public let certChain: [String]?
  • The modulus of the key.

    Declaration

    Swift

    public let modulus: String?
  • The exponent of the key.

    Declaration

    Swift

    public let exponent: String?