diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2018-06-11 00:12:32 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2018-06-11 00:14:53 +0200 |
commit | d5dca62b044290475d9dd793e4abb58fbfe776d5 (patch) | |
tree | 7be77fd08807fe82682d9cb966418c89d0b8a9b8 /src/Volume/Volume.h | |
parent | 509c8288d01070a4e1ac0723313f3d6cd6f61a72 (diff) | |
download | VeraCrypt-d5dca62b044290475d9dd793e4abb58fbfe776d5.tar.gz VeraCrypt-d5dca62b044290475d9dd793e4abb58fbfe776d5.zip |
Linux/MacOSX/FreeBSD: Support mounting partially encrypted system partitions/drivers in ReadOnly mode in order to allow troubleshooting in some cases.
Diffstat (limited to 'src/Volume/Volume.h')
-rw-r--r-- | src/Volume/Volume.h | 4 |
1 files changed, 4 insertions, 0 deletions
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 <Pkcs5Kdf> 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 &); |