OpenId4VpVerifier

open class OpenId4VpVerifier(    clientIdScheme: ClientIdScheme,     keyMaterial: KeyMaterial = EphemeralKeyWithoutCert(),     val verifier: Verifier = VerifierAgent(identifier = clientIdScheme.clientId),     jwsService: JwsService = DefaultJwsService(DefaultCryptoService(keyMaterial)),     verifierJwsService: VerifierJwsService = DefaultVerifierJwsService(DefaultVerifierCryptoService()),     verifierCoseService: VerifierCoseService = DefaultVerifierCoseService(DefaultVerifierCryptoService()),     timeLeewaySeconds: Long = 300,     clock: Clock = Clock.System,     nonceService: NonceService = DefaultNonceService(),     stateToAuthnRequestStore: MapStore<String, AuthenticationRequestParameters> = DefaultMapStore())(source)

Combines Verifiable Presentations with OpenId Connect. Implements OpenID for VP (2024-12-02) as well as SIOP V2 (2023-11-28).

This class creates the Authentication Request, verifier verifies the response. See OpenId4VpHolder for the holder.

Constructors

Link copied to clipboard
constructor(    clientIdScheme: ClientIdScheme,     keyMaterial: KeyMaterial = EphemeralKeyWithoutCert(),     verifier: Verifier = VerifierAgent(identifier = clientIdScheme.clientId),     jwsService: JwsService = DefaultJwsService(DefaultCryptoService(keyMaterial)),     verifierJwsService: VerifierJwsService = DefaultVerifierJwsService(DefaultVerifierCryptoService()),     verifierCoseService: VerifierCoseService = DefaultVerifierCoseService(DefaultVerifierCryptoService()),     timeLeewaySeconds: Long = 300,     clock: Clock = Clock.System,     nonceService: NonceService = DefaultNonceService(),     stateToAuthnRequestStore: MapStore<String, AuthenticationRequestParameters> = DefaultMapStore())

Types

Link copied to clipboard
data class CreatedRequest(val url: String, val loadRequestObject: suspend (RequestObjectParameters?) -> KmmResult<String>? = null)
Link copied to clipboard
sealed class CreationOptions

Properties

Link copied to clipboard

Serve this result JSON-serialized under /.well-known/jar-issuer (see OpenIdConstants.PATH_WELL_KNOWN_JAR_ISSUER), so that SIOP Wallets can look up the keys used to sign request objects.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
suspend fun createAuthnRequest(    requestOptions: RequestOptions,     requestObjectParameters: RequestObjectParameters? = null): AuthenticationRequestParameters

Creates AuthenticationRequestParameters, to be encoded in the URL of the wallet somehow, see createAuthnRequest

suspend fun createAuthnRequest(    requestOptions: RequestOptions,     creationOptions: OpenId4VpVerifier.CreationOptions): KmmResult<OpenId4VpVerifier.CreatedRequest>
Link copied to clipboard
suspend fun createAuthnRequestAsSignedRequestObject(    requestOptions: RequestOptions,     requestObjectParameters: RequestObjectParameters? = null): KmmResult<JwsSigned<AuthenticationRequestParameters>>

Creates an JWS Authorization Request (JAR, RFC9101), wrapping the usual AuthenticationRequestParameters.

Link copied to clipboard
suspend fun prepareAuthnRequest(    requestOptions: RequestOptions,     requestObjectParameters: RequestObjectParameters? = null): AuthenticationRequestParameters

Creates AuthenticationRequestParameters, to be encoded in the URL of the wallet somehow, see createAuthnRequest

Link copied to clipboard
suspend fun submitAuthnRequest(authenticationRequestParameters: AuthenticationRequestParameters)

Remembers authenticationRequestParameters to link responses to requests

Link copied to clipboard

Validates AuthenticationResponseParameters from the Wallet

Validates an Authentication Response from the Wallet, where input is either:

Validates an Authentication Response from the Wallet, where input is a map of POST parameters received.