ParseTokenParams

data class ParseTokenParams(nonce: String, host: String, clientId: String, idpPublicKey: String, servicePrivateKey: String)

Those are used to decrypt, verify signature, verify payload

Constructors

ParseTokenParams
Link copied to clipboard
fun ParseTokenParams(nonce: String, host: String, clientId: String, idpPublicKey: String, servicePrivateKey: String)

Properties

clientId
Link copied to clipboard
val clientId: String
The client identifier assigned to the Relying Party during its registration.
host
Link copied to clipboard
val host: String
IDP host address with protocol prefix.
idpPublicKey
Link copied to clipboard
val idpPublicKey: String
A public key used by the relying party to verify the signed JWT (JWS) messages received from IDP.
nonce
Link copied to clipboard
val nonce: String
The parameter of initiate authentication request you should save it when initiate authentication request.
servicePrivateKey
Link copied to clipboard
val servicePrivateKey: String
A private key used by the relying party to decrypt the encrypted JWT (JWE) messages received from IDP.