mirror of
https://github.com/bitwarden/mobile
synced 2026-01-14 06:23:41 +00:00
17 lines
358 B
C#
17 lines
358 B
C#
|
|
namespace Bit.Core.Utilities.Fido2
|
|
{
|
|
public class Fido2AuthenticatorMakeCredentialResult
|
|
{
|
|
public byte[] CredentialId { get; set; }
|
|
|
|
public byte[] AttestationObject { get; set; }
|
|
|
|
public byte[] AuthData { get; set; }
|
|
|
|
public byte[] PublicKey { get; set; }
|
|
|
|
public int PublicKeyAlgorithm { get; set; }
|
|
}
|
|
}
|