The TQt Cryptographic Architecture
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
Timothy Pearson ea7531c73c
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tqca
12 years ago
examples Added tqca package to the sources tree. This module is from 12 years ago
src Fix FTBFS related to recently added tqtinterface defines. 12 years ago
COPYING Added tqca package to the sources tree. This module is from 12 years ago
INSTALL Added tqca package to the sources tree. This module is from 12 years ago
README Added tqca package to the sources tree. This module is from 12 years ago
TODO Added tqca package to the sources tree. This module is from 12 years ago
configure Use tqmake 12 years ago
qca.pro Added tqca package to the sources tree. This module is from 12 years ago
qca.qc Added tqca package to the sources tree. This module is from 12 years ago
qcextra Added tqca package to the sources tree. This module is from 12 years ago

README

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!