diff --git a/src/KeyKeeper/PasswordStore/IPassStore.cs b/src/KeyKeeper/PasswordStore/IPassStore.cs index 0fc4694..68a1f6f 100644 --- a/src/KeyKeeper/PasswordStore/IPassStore.cs +++ b/src/KeyKeeper/PasswordStore/IPassStore.cs @@ -1,7 +1,13 @@ +using KeyKeeper.PasswordStore.Crypto; + namespace KeyKeeper.PasswordStore; public interface IPassStore { + bool Locked { get; } + IPassStoreDirectory GetRootDirectory(); int GetTotalEntryCount(); + void Unlock(CompositeKey key); + void Lock(); }