vote up 0 vote down star
4

Has its password protection system ever been broken into? Can it be trusted to hold extremely sensitive information?

flag

14% accept rate
Looking forward to the answers / discussion here. In case it's of interest I'll just mention a script (Windows) I wrote that uses 7-zip to do scheduled, encrypted backups wittman.org/ziparcy – micahwittman Oct 21 '08 at 7:38

4 Answers

vote up 13 vote down

If you're protecting anything that you would call "extremely sensitive" information, I would definitely not rely on password protection of an archiving program. I would choose something like GPG, which has been designed specifically for protecting sensitive information. Anything less is doing yourself a disservice.

If you do choose to use GPG, be sure to compress the data with 7-Zip first, then encrypt it. Trying to compress data that has already been encrypted will not produce a smaller file.

link|flag
7zip uses AES-256, one of the stronger encryption algorithms available. It won't be any easier to break into than a file encrypted with GPG, although it might be easier to compromise a weak password than a private key. – John Millikin Oct 21 '08 at 7:35
Yes, the quality of the key material is what I'd be most concerned with. It's hard to come up with a password that has the equivalent of say, 1024 bits of good entropy! – Greg Hewgill Oct 21 '08 at 7:39
The command-line interface to 7-zip includes a password parameter, so a long password/key is feasible without typing like crazy for every act of encryption. – micahwittman Oct 21 '08 at 7:44
With GPG you have to make sure your private key is secure too – grom Nov 19 '08 at 13:15
vote up 11 vote down

7zip uses AES-256, so it's high-quality and trustworthy. I think the weakest link would be the need for a password, so if you're very concerned about it you could use public-key cryptography through GPG.

link|flag
And don't forget to take good care of the private key when doing so. – Vinko Vrsalovic Oct 21 '08 at 7:35
vote up 3 vote down

It really depends on how sensitive your data is, and how easy you want this to be.

For highly sensitive information, A great solution would be to have your sensitive data in a physically safe walk-in safe, on a PC that's disconnected from any kind of network, and having the data encrypted an inaccessible from anywhere else (this does not make sense for my use :) ).

I like to use truecrypt, it allows multiple encryptions, and you can edit the file in-place (in a mounted volume, without extracting and returning the files).

link|flag
vote up 2 vote down

As mentioned before 7-zip uses AES-256 which is considered fairly secure, so while the algorithm is secure, the security of your data now depends on the complexity and security of your password and the fact that the implementation of AES-256 within 7-zip is correct.

Depending on your need for security you would have to take measures to secure the encryption key and then decide whose implementation of AES to trust.

link|flag

Your Answer

Get an OpenID
or

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