mirror of
https://github.com/KeyKeeperApp/KeyKeeper.git
synced 2026-04-18 02:26:28 +03:00
14 lines
259 B
C#
14 lines
259 B
C#
using KeyKeeper.PasswordStore.Crypto;
|
|
|
|
namespace KeyKeeper.PasswordStore;
|
|
|
|
public interface IPassStore
|
|
{
|
|
bool Locked { get; }
|
|
|
|
IPassStoreDirectory GetRootDirectory();
|
|
int GetTotalEntryCount();
|
|
void Unlock(CompositeKey key);
|
|
void Lock();
|
|
}
|