RqesOpenId4VpHolder

class RqesOpenId4VpHolder(    clientId: String = "https://wallet.a-sit.at/app",     redirectUrl: String = "/callback",     oauth2Client: OAuth2Client = OAuth2Client( clientId = clientId, redirectUrl = redirectUrl, ))(source)

Wallet service that implements generation of all data classes necessary to successfully end-end a remote signature creation request by a driving application This class focuses on the POTENTIAL UC5 wallet use case and as such currently only supports signHash. signDoc is out of testing scope for now but may be added later

Constructors

Link copied to clipboard
constructor(    clientId: String = "https://wallet.a-sit.at/app",     redirectUrl: String = "/callback",     oauth2Client: OAuth2Client = OAuth2Client( clientId = clientId, redirectUrl = redirectUrl, ))

Types

Link copied to clipboard
data class SignatureProperties(    val signatureQualifier: SignatureQualifier = SignatureQualifier.EU_EIDAS_QES,     val signatureFormat: SignatureFormat = SignatureFormat.PADES,     val conformanceLevel: ConformanceLevel = ConformanceLevel.ADESBB,     val signedEnvelopeProperty: SignedEnvelopeProperty? = null)
Link copied to clipboard
data class SigningCredential(    val credentialId: String,     val certificates: List<X509Certificate>,     val supportedSigningAlgorithms: List<X509SignatureAlgorithm>)

Functions

Link copied to clipboard
suspend fun createCredentialAuthenticationRequest(    documentDigests: Collection<OAuthDocumentDigest>,     redirectUrl: String = this.redirectUrl,     hashAlgorithm: Digest,     wrapAsPar: Boolean = false,     optionalParameters: OAuth2RqesParameters.Optional? = null,     documentLocation: Collection<DocumentLocation>? = null): AuthenticationRequestParameters

CSC API v2.0.0.2 Authorization to access /credentials/signHash and /credentials/signDoc endpoints

Link copied to clipboard
suspend fun createOAuth2TokenRequest(    state: String,     authorization: OAuth2Client.AuthorizationForToken,     authorizationDetails: Set<AuthorizationDetails>? = null): TokenRequestParameters
Link copied to clipboard
suspend fun createServiceAuthenticationRequest(    redirectUrl: String = this.redirectUrl,     wrapAsPar: Boolean = false,     optionalParameters: OAuth2RqesParameters.Optional? = null): AuthenticationRequestParameters

CSC API v2.0.0.2 Authorization to access /credentials/info and /credentials/list endpoints

Link copied to clipboard
suspend fun createSignHashRequestParameters(dtbsr: Hashes, sad: String, signatureAlgorithm: X509SignatureAlgorithm): QtspSignatureRequest
Link copied to clipboard
suspend fun getCscAuthenticationDetails(    documentDigests: Collection<OAuthDocumentDigest>,     hashAlgorithm: Digest,     documentLocation: Collection<DocumentLocation>? = null): AuthorizationDetails

Here OAuthDocumentDigest.hash is the DTBS/R and will be hashed again with hashAlgorithmOid

Link copied to clipboard
suspend fun getCscDocumentDigests(    documentDigests: Collection<OAuthDocumentDigest>,     signatureAlgorithm: X509SignatureAlgorithm): DocumentDigest
Link copied to clipboard
suspend fun setSigningCredential(credentialInfo: CredentialInfo)

TODO probably match SignatureProperties and CryptoProperties with credentialInfo if they are set

Link copied to clipboard
suspend fun updateSignatureProperties(    signatureFormat: SignatureFormat? = null,     conformanceLevel: ConformanceLevel? = null,     signedEnvelopeProperty: SignedEnvelopeProperty? = null): RqesOpenId4VpHolder.SignatureProperties