1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-18 01:03:24 +00:00

[PM-5731] feat: implement credential assertion in client

This commit is contained in:
Andreas Coroiu
2024-02-12 13:45:41 +01:00
parent e9d1792dd7
commit 3c848a3dcc
9 changed files with 350 additions and 12 deletions

View File

@@ -11,7 +11,13 @@ namespace Bit.Core.Utilities.Fido2
public class Fido2ClientAssertCredentialParams
{
/// <summary>
/// S challenge that the selected authenticator signs, along with other data, when producing an authentication
/// A value which is true if and only if the callers environment settings object is same-origin with its ancestors.
/// It is false if caller is cross-origin.
/// </summary>
public bool SameOriginWithAncestors { get; set; }
/// <summary>
/// The challenge that the selected authenticator signs, along with other data, when producing an authentication
/// assertion.
/// </summary>
public required byte[] Challenge { get; set; }