up vote 6 down vote favorite
5
share [g+] share [fb]

I want to create a program, which can encrypt and decrypt a complete file with an individual password. Is there any way to manage this in Qt and/or C++ and how?

link|improve this question

feedback

6 Answers

up vote 11 down vote accepted

www.cryptopp.com is a very complete C++ library with implementations of most algorithms.

The actual program (select file, read, obtain key, encrypt etc) should be piece of cake.

link|improve this answer
feedback

I've never used it myself, but I've heard great things about QCA. It's cross platfrom, uses a Qt-style API and Qt datatypes.

link|improve this answer
2  
+1 for Qt oriented library – Idan K Aug 12 '09 at 0:00
feedback

Neither Qt nor the C++ standard library have encryption built-in. You'll need another external library to handle encryption.

link|improve this answer
feedback

Old, I know, but try Botan. It's actually used internally by Qt Creator 2.0. If you download the Qt Creator 2.0 sources you can find a copy of Botan 1.8.8 all set up for the Qt build system (qmake).

link|improve this answer
feedback

Qt doesn't provide functionality to encrypt/decrypt.

QCryptographicHash only generates hashes. It is not what you are looking for.

link|improve this answer
feedback

You can use this class in the QT: QCryptographicHash.

link|improve this answer
1  
but you cannot encrypt a whole file! – Berschi Apr 29 '10 at 7:36
A cryptographic hash is not encryption and cannot be decrypted. – pbhogan Jul 13 '10 at 13:36
@pbhogan but you have heard about rainbow tables, don't you ;-) – mbx Aug 8 '11 at 9:51
feedback

Your Answer

 
or
required, but never shown

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