Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

What are possible drawbacks of using TrueCrypt? Do I risk losing my data in case of some disk error?

share|improve this question

1 Answer

up vote 7 down vote accepted

Two cases: full system encryption and disk images.

With full system encryption Truecrypt requires burning restore CD. That can be used to restore broken disk header, due to disk failure or data corruption. With that it is possible to decrypt disk, even if something is corrupted. Restoring disk contents using some commercial service might pricey/impossible when there is disk encryption added.

With disk images by default there is no backup of disk header. Therefore, corruption in the beginning of disk destroys all contents (do not destroy, but you have no way to access those).

Disk header is important, as your passphrase is only decrypting encryption key from header. That encryption key is then used for disk encryption/decrypting.

Quote from Truecrypt FAQ:

What will happen when a part of a TrueCrypt volume becomes corrupted?

In encrypted data, one corrupted bit usually corrupts the whole ciphertext block in which it occurred. The ciphertext block size used by TrueCrypt is 16 bytes (i.e., 128 bits). The mode of operation used by TrueCrypt ensures that if data corruption occurs within a block, the remaining blocks are not affected.

16 bytes is rather tiny part of typical disk, only 0.00000149% of one gigabyte.

share|improve this answer
So in the case when a block of data (not including header) is damaged, I lose only data stored in this block? – user66548 Feb 8 '11 at 12:22
Yes, that is correct. I also modified my answer accordingly. – Olli Feb 8 '11 at 13:21
5  
No you don't lose your data because you have made regular backups that you keep in a secure place ;-) – Linker3000 Feb 8 '11 at 13:39
@user66548: if this provided answer to your question, you should accept it (meta.serverfault.com/questions/1033/…) – Olli Feb 15 '11 at 13:27
@Linker3000, bad answer. My backup is encrypted too. It would be stupid to leave it open :) – user66548 Apr 15 '11 at 7:20
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.