PDA

View Full Version : how to encrypt ?



probine
22nd November 2006, 05:17
I have a simple client-server application. The client sends "Hello World" to the server.

How do i encrypt the message sent by the client, and how do I decrypt the message received by the server ?

jpn
22nd November 2006, 06:51
Qt Cryptographic Architecture (QCA) (http://delta.affinix.com/qca/)

jpn
22nd November 2006, 19:19
QxtBlowFish (http://qxt.qtnode.net/classQxtBlowFish.html) ;)

wysota
22nd November 2006, 19:32
Or create your own subclass of QIODevice and do the encrypting/decrypting there using an algorithm of your choice.