-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
init vp_format support #252
Conversation
Signed-off-by: Johannes Tuerk <[email protected]>
Signed-off-by: Johannes Tuerk <[email protected]>
Signed-off-by: Johannes Tuerk <[email protected]>
Signed-off-by: Johannes Tuerk <[email protected]>
Signed-off-by: Johannes Tuerk <[email protected]>
Signed-off-by: Johannes Tuerk <[email protected]>
/// <returns>An array of credential candidates, each containing a list of credentials that match the input descriptors.</returns> | ||
Task<PresentationCandidates[]> FindCredentialCandidates(IEnumerable<InputDescriptor> inputDescriptors); | ||
Task<PresentationCandidates[]> FindCredentialCandidates(IEnumerable<InputDescriptor> inputDescriptors, Formats? supportedFormatSigningAlgorithms = null); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Option instead of Formats?
@@ -40,23 +42,18 @@ public Task<PresentationSubmission> CreatePresentationSubmission( | |||
} | |||
|
|||
/// <inheritdoc /> | |||
public virtual async Task<PresentationCandidates[]> FindCredentialCandidates(IEnumerable<InputDescriptor> inputDescriptors) | |||
public virtual async Task<PresentationCandidates[]> FindCredentialCandidates(IEnumerable<InputDescriptor> inputDescriptors, Formats? supportedFormatSigningAlgorithms) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Option instead of Formats?
@@ -83,7 +80,7 @@ public virtual async Task<PresentationCandidates[]> FindCredentialCandidates(IEn | |||
return result.ToArray(); | |||
} | |||
|
|||
private async Task<List<ICredential>> GetMatchingCredentials(InputDescriptor inputDescriptor) | |||
private async Task<List<ICredential>> GetMatchingCredentials(InputDescriptor inputDescriptor, Formats? supportedFormatSigningAlgorithms) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Option< Formats > instead of Formats?
Signed-off-by: kenkosmowski <[email protected]>
Short description of what this resolves:
add support for vp_format