The main difference being TrueCrypt creates containers and 7-Zip encrypts the file itself, so file sizes can be guessed. Now let's just talk about the strength and breakability of the encryption.
|
If implemented correctly, AES is AES; the output between two different implementations is identical, and therefore no distinction is possible in after-the-fact comparison -- if done correctly, the one is exactly the same as the other. But there are a few points where differences can crop in: Operation Mode From examining the p7zip source code, it appears that AES encoding for the 7-zip format operates in CBC mode. This is certainly not necessarily insecure; it's the mode most popularly used in protocols such as TLS, but it is potentially vulnerable to padding oracle attacks. See this discussion on operation modes for more information. Key Derivation Vetted Implementation All in all, the differences are minor, and for most use cases you shouldn't expect any difference at all from a security perspective. If it's a matter of life-and-death, I'd probably pick TrueCrypt. But for matters of mere secrecy, I'd recommend going with whichever solution fits your problem the best. |
|||||||||||||
|
|
The security of a cipher depends on it's specific implementation in a software utility. As far as I know, there are no known AES implementation issues in 7-Zip or TrueCrypt. AES is a fast cipher and hardware acceleration features such as AES-NI make it much faster. So protecting against brute-force requires strengthening the key through key extension mechanisms. Brute-forcing tools exist for both 7-Zip and TrueCrypt and they support hardware acceleration. 7-Zip uses key extension to increase the time to brute-force. The user password is hashed 130,000 to 524,288 times (depending on the version) using SHA256. TrueCrypt also uses PBKDF2 for key extension with 1000 iterations which is 2 orders order of magnitude lower than 7-Zip. An issues is that TrueCrypt uses the minimum number of iterations recommended 10 years ago.
It also uses 512 bit salting that decreases vulnerabilities to dictionary and rainbow tables attacks. So from a brute-force perspective, 7-Zip is a bit better than TrueCrypt, but both are considered fairly resilient to brute-force attacks. There is a story where the FBI tried to crack a TrueCrypt volume for 12 months and failed. |
|||||||||||||
|