From d5dca62b044290475d9dd793e4abb58fbfe776d5 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Mon, 11 Jun 2018 00:12:32 +0200 Subject: Linux/MacOSX/FreeBSD: Support mounting partially encrypted system partitions/drivers in ReadOnly mode in order to allow troubleshooting in some cases. --- src/Volume/Volume.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/Volume/Volume.h') diff --git a/src/Volume/Volume.h b/src/Volume/Volume.h index 311c65bc..a743a161 100644 --- a/src/Volume/Volume.h +++ b/src/Volume/Volume.h @@ -113,6 +113,7 @@ namespace VeraCrypt uint32 GetSaltSize () const { return Header->GetSaltSize(); } size_t GetSectorSize () const { return SectorSize; } uint64 GetSize () const { return VolumeDataSize; } + uint64 GetEncryptedSize () const { return EncryptedDataSize; } uint64 GetTopWriteOffset () const { return TopWriteOffset; } uint64 GetTotalDataRead () const { return TotalDataRead; } uint64 GetTotalDataWritten () const { return TotalDataWritten; } @@ -127,6 +128,7 @@ namespace VeraCrypt void ReadSectors (const BufferPtr &buffer, uint64 byteOffset); void ReEncryptHeader (bool backupHeader, const ConstBufferPtr &newSalt, const ConstBufferPtr &newHeaderKey, shared_ptr newPkcs5Kdf); void WriteSectors (const ConstBufferPtr &buffer, uint64 byteOffset); + bool IsEncryptionNotCompleted () const { return EncryptionNotCompleted; } protected: void CheckProtectedRange (uint64 writeHostOffset, uint64 writeLength); @@ -146,11 +148,13 @@ namespace VeraCrypt uint64 VolumeHostSize; uint64 VolumeDataOffset; uint64 VolumeDataSize; + uint64 EncryptedDataSize; uint64 TopWriteOffset; uint64 TotalDataRead; uint64 TotalDataWritten; bool TrueCryptMode; int Pim; + bool EncryptionNotCompleted; private: Volume (const Volume &); -- cgit v1.2.3