mirror of
https://github.com/bitwarden/android.git
synced 2026-05-23 22:51:40 -05:00
19 lines
563 B
C#
19 lines
563 B
C#
using Bit.Core.Abstractions;
|
|
using Bit.Core.Utilities.Fido2;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public class Fido2AuthenticatorService : IFido2AuthenticatorService
|
|
{
|
|
public Task<Fido2AuthenticatorGetAssertionResult> GetAssertionAsync(Fido2AuthenticatorGetAssertionParams assertionParams)
|
|
{
|
|
// TODO: IMPLEMENT this
|
|
return Task.FromResult(new Fido2AuthenticatorGetAssertionResult
|
|
{
|
|
AuthenticatorData = new byte[32],
|
|
Signature = new byte[8]
|
|
});
|
|
}
|
|
}
|
|
}
|