summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/groupwise/libgroupwise/qca/src/qca.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2012-11-24 16:19:37 +0100
committerSlávek Banko <slavek.banko@axis.cz>2012-11-24 16:21:38 +0100
commit68b5e38626333b0c1c0396ef8b4b9221e425465a (patch)
treefa6a18bcf394cf95dbb901a8234ea399c4869e1f /kopete/protocols/groupwise/libgroupwise/qca/src/qca.h
parentb701e9bde1ec398e3c9a89ba8f4de08ab71cd1a7 (diff)
downloadtdenetwork-68b5e38626333b0c1c0396ef8b4b9221e425465a.tar.gz
tdenetwork-68b5e38626333b0c1c0396ef8b4b9221e425465a.zip
Rename QCA to TQCA
Fix FTBFS
Diffstat (limited to 'kopete/protocols/groupwise/libgroupwise/qca/src/qca.h')
-rw-r--r--kopete/protocols/groupwise/libgroupwise/qca/src/qca.h86
1 files changed, 43 insertions, 43 deletions
diff --git a/kopete/protocols/groupwise/libgroupwise/qca/src/qca.h b/kopete/protocols/groupwise/libgroupwise/qca/src/qca.h
index 4c27f047..73edb40d 100644
--- a/kopete/protocols/groupwise/libgroupwise/qca/src/qca.h
+++ b/kopete/protocols/groupwise/libgroupwise/qca/src/qca.h
@@ -18,8 +18,8 @@
*
*/
-#ifndef QCA_H
-#define QCA_H
+#ifndef TQCA_H
+#define TQCA_H
#include<tqstring.h>
#include<tqcstring.h>
@@ -29,38 +29,38 @@
#include<tqobject.h>
#ifdef Q_OS_WIN32
-# ifndef QCA_STATIC
-# ifdef QCA_MAKEDLL
-# define QCA_EXPORT __declspec(dllexport)
+# ifndef TQCA_STATIC
+# ifdef TQCA_MAKEDLL
+# define TQCA_EXPORT __declspec(dllexport)
# else
-# define QCA_EXPORT __declspec(dllimport)
+# define TQCA_EXPORT __declspec(dllimport)
# endif
# endif
#endif
-#ifndef QCA_EXPORT
-#define QCA_EXPORT
+#ifndef TQCA_EXPORT
+#define TQCA_EXPORT
#endif
#ifdef Q_OS_WIN32
-# ifdef QCA_PLUGIN_DLL
-# define QCA_PLUGIN_EXPORT extern "C" __declspec(dllexport)
+# ifdef TQCA_PLUGIN_DLL
+# define TQCA_PLUGIN_EXPORT extern "C" __declspec(dllexport)
# else
-# define QCA_PLUGIN_EXPORT extern "C" __declspec(dllimport)
+# define TQCA_PLUGIN_EXPORT extern "C" __declspec(dllimport)
# endif
#endif
-#ifndef QCA_PLUGIN_EXPORT
-#define QCA_PLUGIN_EXPORT extern "C"
+#ifndef TQCA_PLUGIN_EXPORT
+#define TQCA_PLUGIN_EXPORT extern "C"
#endif
class TQHostAddress;
class TQStringList;
-class QCAProvider;
-class QCA_HashContext;
-class QCA_CipherContext;
-class QCA_CertContext;
+class TQCAProvider;
+class TQCA_HashContext;
+class TQCA_CipherContext;
+class TQCA_CertContext;
-namespace QCA
+namespace TQCA
{
enum {
CAP_SHA1 = 0x0001,
@@ -86,15 +86,15 @@ namespace QCA
Decrypt = 0x0002
};
- QCA_EXPORT void init();
- QCA_EXPORT bool isSupported(int capabilities);
- QCA_EXPORT void insertProvider(QCAProvider *);
- QCA_EXPORT void unloadAllPlugins();
+ TQCA_EXPORT void init();
+ TQCA_EXPORT bool isSupported(int capabilities);
+ TQCA_EXPORT void insertProvider(TQCAProvider *);
+ TQCA_EXPORT void unloadAllPlugins();
- QCA_EXPORT TQString arrayToHex(const TQByteArray &);
- QCA_EXPORT TQByteArray hexToArray(const TQString &);
+ TQCA_EXPORT TQString arrayToHex(const TQByteArray &);
+ TQCA_EXPORT TQByteArray hexToArray(const TQString &);
- class QCA_EXPORT Hash
+ class TQCA_EXPORT Hash
{
public:
Hash(const Hash &);
@@ -106,7 +106,7 @@ namespace QCA
TQByteArray final();
protected:
- Hash(QCA_HashContext *);
+ Hash(TQCA_HashContext *);
private:
class Private;
@@ -114,7 +114,7 @@ namespace QCA
};
template <class T>
- class QCA_EXPORT HashStatic
+ class TQCA_EXPORT HashStatic
{
public:
HashStatic<T>() {}
@@ -144,7 +144,7 @@ namespace QCA
}
};
- class QCA_EXPORT Cipher
+ class TQCA_EXPORT Cipher
{
public:
Cipher(const Cipher &);
@@ -158,7 +158,7 @@ namespace QCA
TQByteArray final(bool *ok=0);
protected:
- Cipher(QCA_CipherContext *, int dir, int mode, const TQByteArray &key, const TQByteArray &iv, bool pad);
+ Cipher(TQCA_CipherContext *, int dir, int mode, const TQByteArray &key, const TQByteArray &iv, bool pad);
private:
class Private;
@@ -166,7 +166,7 @@ namespace QCA
};
template <class T>
- class QCA_EXPORT CipherStatic
+ class TQCA_EXPORT CipherStatic
{
public:
CipherStatic<T>() {}
@@ -184,50 +184,50 @@ namespace QCA
}
};
- class QCA_EXPORT SHA1 : public Hash, public HashStatic<SHA1>
+ class TQCA_EXPORT SHA1 : public Hash, public HashStatic<SHA1>
{
public:
SHA1();
};
- class QCA_EXPORT SHA256 : public Hash, public HashStatic<SHA256>
+ class TQCA_EXPORT SHA256 : public Hash, public HashStatic<SHA256>
{
public:
SHA256();
};
- class QCA_EXPORT MD5 : public Hash, public HashStatic<MD5>
+ class TQCA_EXPORT MD5 : public Hash, public HashStatic<MD5>
{
public:
MD5();
};
- class QCA_EXPORT BlowFish : public Cipher, public CipherStatic<BlowFish>
+ class TQCA_EXPORT BlowFish : public Cipher, public CipherStatic<BlowFish>
{
public:
BlowFish(int dir=Encrypt, int mode=CBC, const TQByteArray &key=TQByteArray(), const TQByteArray &iv=TQByteArray(), bool pad=true);
};
- class QCA_EXPORT TripleDES : public Cipher, public CipherStatic<TripleDES>
+ class TQCA_EXPORT TripleDES : public Cipher, public CipherStatic<TripleDES>
{
public:
TripleDES(int dir=Encrypt, int mode=CBC, const TQByteArray &key=TQByteArray(), const TQByteArray &iv=TQByteArray(), bool pad=true);
};
- class QCA_EXPORT AES128 : public Cipher, public CipherStatic<AES128>
+ class TQCA_EXPORT AES128 : public Cipher, public CipherStatic<AES128>
{
public:
AES128(int dir=Encrypt, int mode=CBC, const TQByteArray &key=TQByteArray(), const TQByteArray &iv=TQByteArray(), bool pad=true);
};
- class QCA_EXPORT AES256 : public Cipher, public CipherStatic<AES256>
+ class TQCA_EXPORT AES256 : public Cipher, public CipherStatic<AES256>
{
public:
AES256(int dir=Encrypt, int mode=CBC, const TQByteArray &key=TQByteArray(), const TQByteArray &iv=TQByteArray(), bool pad=true);
};
class RSA;
- class QCA_EXPORT RSAKey
+ class TQCA_EXPORT RSAKey
{
public:
RSAKey();
@@ -259,7 +259,7 @@ namespace QCA
bool generate(unsigned int bits);
};
- class QCA_EXPORT RSA
+ class TQCA_EXPORT RSA
{
public:
RSA();
@@ -278,7 +278,7 @@ namespace QCA
};
typedef TQMap<TQString, TQString> CertProperties;
- class QCA_EXPORT Cert
+ class TQCA_EXPORT Cert
{
public:
Cert();
@@ -308,10 +308,10 @@ namespace QCA
Private *d;
friend class TLS;
- void fromContext(QCA_CertContext *);
+ void fromContext(TQCA_CertContext *);
};
- class QCA_EXPORT TLS : public TQObject
+ class TQCA_EXPORT TLS : public TQObject
{
Q_OBJECT
@@ -373,7 +373,7 @@ namespace QCA
Private *d;
};
- class QCA_EXPORT SASL : public TQObject
+ class TQCA_EXPORT SASL : public TQObject
{
Q_OBJECT