mirror of
https://github.com/bitwarden/mobile
synced 2026-01-01 08:03:37 +00:00
* support for storing multiple biometric integrity states for iOS * remove unused var & save new extension bio state upon password validation
11 lines
266 B
C#
11 lines
266 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Bit.Core.Abstractions
|
|
{
|
|
public interface IBiometricService
|
|
{
|
|
Task<bool> SetupBiometricAsync(string bioIntegrityKey = null);
|
|
Task<bool> ValidateIntegrityAsync(string bioIntegrityKey = null);
|
|
}
|
|
}
|