buildClientAttestationJwt

suspend fun JwsService.buildClientAttestationJwt(    clientId: String,     issuer: String,     clientKey: JsonWebKey,     walletName: String? = null,     walletLink: String? = null,     lifetime: Duration = 60.minutes,     clockSkew: Duration = 5.minutes): JwsSigned<JsonWebToken>(source)

Client attestation JWT, issued by the backend service to a client, which can be sent to an OAuth2 Authorization Server if needed, e.g. as HTTP header OAuth-Client-Attestation, see OAuth 2.0 Attestation-Based Client Authentication

Parameters

clientId

OAuth 2.0 client ID of the wallet

issuer

a unique identifier for the entity that issued the JWT

clientKey

key to be attested, i.e. included in a at.asitplus.signum.indispensable.josef.ConfirmationClaim

walletName

human-readable name of the Wallet

walletLink

URL for further information about the Wallet Provider

lifetime

validity period of the assertion (minus the clockSkew)

clockSkew

duration to subtract from Clock.System.now when setting the creation timestamp