AuthConfigDecryptedCredentialJwt

data class AuthConfigDecryptedCredentialJwt(val jwt: String? = null, val jwtHeader: String? = null, val jwtPayload: String? = null, val secret: String? = null)

Constructors

Link copied to clipboard
constructor(jwt: String? = null, jwtHeader: String? = null, jwtPayload: String? = null, secret: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val jwt: String? = null

(Output) The token calculated by the header, payload and signature.

Link copied to clipboard
val jwtHeader: String? = null

Identifies which algorithm is used to generate the signature.

Link copied to clipboard
val jwtPayload: String? = null

Contains a set of claims. The JWT specification defines seven Registered Claim Names which are the standard fields commonly included in tokens. Custom claims are usually also included, depending on the purpose of the token.

Link copied to clipboard
val secret: String? = null

User's pre-shared secret to sign the token.