using System; using System.Collections.Generic; using System.Linq; using System.Security.Cryptography; using System.Threading.Tasks; namespace Akari.Prototype.Server.Services { public interface IMasterKeyService { public bool IsLoggedIn { get; } public bool IsPasswordSet { get; } public bool Login(string password); public bool TryGetKey(out AesGcm key); public bool CreatePassword(string password); } }