inspac-sdk
/
com.thoughtworks.inspac.sdk.model
/
ParseTokenParams
Parse
Token
Params
data class
ParseTokenParams
(nonce:
String
, host:
String
, clientId:
String
, idpPublicKey:
String
, servicePrivateKey:
String
)
Content copied to clipboard
Those are used to decrypt, verify signature, verify payload
Constructors
Properties
Constructors
ParseTokenParams
Link copied to clipboard
fun
ParseTokenParams
(nonce:
String
, host:
String
, clientId:
String
, idpPublicKey:
String
, servicePrivateKey:
String
)
Content copied to clipboard
Properties
clientId
Link copied to clipboard
val
clientId
:
String
Content copied to clipboard
The client identifier assigned to the Relying Party during its registration.
host
Link copied to clipboard
val
host
:
String
Content copied to clipboard
IDP host address with protocol prefix.
idpPublicKey
Link copied to clipboard
val
idpPublicKey
:
String
Content copied to clipboard
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
Content copied to clipboard
The parameter of initiate authentication request you should save it when initiate authentication request.
servicePrivateKey
Link copied to clipboard
val
servicePrivateKey
:
String
Content copied to clipboard
A private key used by the relying party to decrypt the encrypted JWT (JWE) messages received from IDP.