1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-11 22:03:27 +00:00
Files
mobile/src/Core/Abstractions/IBiometricService.cs
mp-bw 0f417b8434 [PM-1817] Expand biometric integrity checks to the account level (#2498)
* Change bio integrity validation to work at account-level

* biometric state migration

* fix account bio valid key storage location during migration

* comment clarification

* fix for iOS extensions not using custom avatar color
2023-05-01 09:47:00 -04:00

11 lines
286 B
C#

using System.Threading.Tasks;
namespace Bit.Core.Abstractions
{
public interface IBiometricService
{
Task<bool> SetupBiometricAsync(string bioIntegritySrcKey = null);
Task<bool> IsSystemBiometricIntegrityValidAsync(string bioIntegritySrcKey = null);
}
}