mirror of
https://github.com/KeyKeeperApp/KeyKeeper.git
synced 2026-05-02 21:06:34 +03:00
add Lock and Unlock methods to IPassStore
This commit is contained in:
@@ -1,7 +1,13 @@
|
|||||||
|
using KeyKeeper.PasswordStore.Crypto;
|
||||||
|
|
||||||
namespace KeyKeeper.PasswordStore;
|
namespace KeyKeeper.PasswordStore;
|
||||||
|
|
||||||
public interface IPassStore
|
public interface IPassStore
|
||||||
{
|
{
|
||||||
|
bool Locked { get; }
|
||||||
|
|
||||||
IPassStoreDirectory GetRootDirectory();
|
IPassStoreDirectory GetRootDirectory();
|
||||||
int GetTotalEntryCount();
|
int GetTotalEntryCount();
|
||||||
|
void Unlock(CompositeKey key);
|
||||||
|
void Lock();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user