mirror of
https://github.com/bitwarden/mobile
synced 2025-12-20 02:03:49 +00:00
* [PM-7257] feat: add ability to override `clientDataHash` * [PM-7257] feat: add support for clientDataHash and extensions * PM-7257 Updated the origin to be the correct one and not the android one to be passed to the Fido2Client --------- Co-authored-by: Federico Maccaroni <fedemkr@gmail.com>
11 lines
193 B
C#
11 lines
193 B
C#
using Bit.Core.Models.View;
|
|
|
|
public class Fido2SelectedCredential
|
|
{
|
|
public byte[] Id { get; set; }
|
|
|
|
public byte[] UserHandle { get; set; }
|
|
|
|
public CipherView Cipher { get; set; }
|
|
}
|