mirror of
https://github.com/bitwarden/android.git
synced 2026-05-21 20:20:03 -05:00
10 lines
257 B
C#
10 lines
257 B
C#
using Bit.Core.Utilities.Fido2;
|
|
|
|
namespace Bit.Core.Abstractions
|
|
{
|
|
public interface IFido2AuthenticationService
|
|
{
|
|
Task<Fido2AuthenticatorGetAssertionResult> GetAssertionAsync(Fido2AuthenticatorGetAssertionParams assertionParams);
|
|
}
|
|
}
|