mirror of
https://github.com/bitwarden/mobile
synced 2025-12-11 22:03:27 +00:00
* 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
11 lines
286 B
C#
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);
|
|
}
|
|
}
|