add Lock and Unlock methods to IPassStore

This commit is contained in:
2025-12-02 16:47:44 +03:00
parent d19ea304cb
commit 4fbebbbf80

View File

@@ -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();
}