1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-10 12:33:28 +00:00

[PM-5731] feat: add rp mismatch test

This commit is contained in:
Andreas Coroiu
2024-01-18 10:15:21 +01:00
parent 32c2f2aac4
commit cc89b6a5d5
2 changed files with 52 additions and 13 deletions

View File

@@ -5,6 +5,13 @@ namespace Bit.Core.Services
{
public class Fido2AuthenticatorService : IFido2AuthenticatorService
{
private ICipherService _cipherService;
public Fido2AuthenticatorService(ICipherService cipherService)
{
_cipherService = cipherService;
}
public Task<Fido2AuthenticatorGetAssertionResult> GetAssertionAsync(Fido2AuthenticatorGetAssertionParams assertionParams)
{
throw new NotAllowedError();