Better suspend/resume handling

This commit is contained in:
BONNEVILLE Geoffroy
2018-06-21 16:40:04 +02:00
parent 4393aada3e
commit d533abada5
7 changed files with 33 additions and 27 deletions

View File

@@ -16,12 +16,6 @@ namespace ModernKeePassApp.Test.Mock
public PwCompressionAlgorithm CompressionAlgorithm { get; set; }
public CompositeKey CompositeKey
{
get { return _compositeKey; }
set { _compositeKey = value; }
}
public PwUuid DataCipher { get; set; }
public KdfParameters KeyDerivation { get; set; }
@@ -48,6 +42,11 @@ namespace ModernKeePassApp.Test.Mock
_isOpen = false;
}
public void UpdateCompositeKey(CompositeKey newCompositeKey)
{
_compositeKey = newCompositeKey;
}
public void CreateRecycleBin(string title)
{
throw new NotImplementedException();