Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Tuerk <johannes.tuerk@lissi.id>
  • Loading branch information
JoTiTu committed Feb 9, 2024
1 parent d956a0f commit 67bd881
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ public interface IOid4VciClientService
/// <param name="credentialMetadata">The credential metadata.</param>
/// <param name="issuerMetadata">The issuer metadata.</param>
/// <param name="tokenResponse">The token response from the previous token request.</param>
/// <param name="dPopKeyId">The key ID that is used during the signing of the DPoP Jwt Proof.</param>
/// <param name="dPopNonce">The nonce that is used for the DPoP Jwt Proof.</param>
/// <returns>
/// A tuple containing the credential response and the key ID used during the signing of the Proof of Possession.
/// </returns>
Expand All @@ -44,7 +46,8 @@ public interface IOid4VciClientService
/// <param name="metadata">The OID issuer metadata.</param>
/// <param name="preAuthorizedCode">The pre-authorized code for token request.</param>
/// <param name="transactionCode">The Transaction Code.</param>
/// <returns>A task that represents the asynchronous operation. The task result contains the token response.</returns>
/// <returns>A task that represents the asynchronous operation. The task result contains the token response
/// and a key ID and nonce for the DPoP process.</returns>
Task<(TokenResponse tokenResponse, string? dPopKeyId, string? dPopNonce)> RequestTokenAsync(
OidIssuerMetadata metadata,
string preAuthorizedCode,
Expand Down

0 comments on commit 67bd881

Please sign in to comment.