diff options
| author | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-17 19:51:44 -0500 |
|---|---|---|
| committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-17 19:51:44 -0500 |
| commit | c663e43e7172bb80a8fb779e4dc74f579a60ec45 (patch) | |
| tree | fd72db9c80e6c1aacf67e8bd24f75a4da57c4a2e /README | |
| download | tqca-c663e43e7172bb80a8fb779e4dc74f579a60ec45.tar.gz tqca-c663e43e7172bb80a8fb779e4dc74f579a60ec45.zip | |
Added tqca package to the sources tree. This module is from
the original qca-1.0 sources with the TQt layer added.
This resolves bug report 817.
Diffstat (limited to 'README')
| -rw-r--r-- | README | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -0,0 +1,29 @@ +Qt Cryptographic Architecture +----------------------------- +Version: API v1.0, Plugin v1 +Author: Justin Karneges <justin@affinix.com> +Date: September 10th 2003 + +This library provides an easy API for the following features: + + SSL/TLS + X509 + SASL + RSA + Hashing (SHA1, MD5) + Ciphers (BlowFish, 3DES, AES) + +Functionality is supplied via plugins. This is useful for avoiding +dependence on a particular crypto library and makes upgrading easier, +as there is no need to recompile your application when adding or +upgrading a crypto plugin. Also, by pushing crypto functionality into +plugins, your application is free of legal issues, such as export +regulation. + +And of course, you get a very simple crypto API for Qt, where you can +do things like: + + TQString hash = QCA::SHA1::hashToString(blockOfData); + +Have fun! + |
