vote up 4 vote down star
4

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?

flag

3 Answers

vote up 8 vote down check

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|flag
vote up 8 vote down

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|flag
1  
+1 for Qt oriented library – daniel Aug 12 at 0:00
vote up 5 vote down

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

link|flag

Your Answer

Get an OpenID
or

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