using Bit.Core.Enums; namespace Bit.Core.Abstractions { public interface IUserVerificationService { Task VerifyUser(string secret, VerificationType verificationType); Task VerifyMasterPasswordAsync(string masterPassword); Task HasMasterPasswordAsync(bool checkMasterKeyHash = false); } }