From 4fbebbbf80d385fae728c95a66a83cdb2ba3116d Mon Sep 17 00:00:00 2001 From: Slavasil Date: Tue, 2 Dec 2025 16:47:44 +0300 Subject: [PATCH] add Lock and Unlock methods to IPassStore --- src/KeyKeeper/PasswordStore/IPassStore.cs | 6 ++++++ 1 file changed, 6 insertions(+) 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(); }