Qt Cryptographic Architecture
|
#include <QString>
#include <QStringList>
#include <QList>
#include <QSharedData>
#include <QSharedDataPointer>
#include "qca_export.h"
#include "qca_support.h"
#include "qca_tools.h"
#include "qca_version.h"
Go to the source code of this file.
Classes | |
class | QCA::Algorithm |
class | QCA::BasicContext |
class | QCA::BufferedComputation |
class | QCA::Event |
class | QCA::EventHandler |
class | QCA::Filter |
class | QCA::InitializationVector |
class | QCA::Initializer |
class | QCA::KeyLength |
class | QCA::PasswordAsker |
class | QCA::Provider |
class | QCA::Provider |
class | QCA::SymmetricKey |
class | QCA::TokenAsker |
Namespaces | |
QCA | |
Macros | |
#define | QCA_logBinaryMessage(blob, severity) |
#define | QCA_logTextMessage(message, severity) |
Typedefs | |
typedef QList< Provider * > | QCA::ProviderList |
Enumerations | |
enum | QCA::Direction { QCA::Encode, QCA::Decode } |
enum | QCA::MemoryMode { QCA::Practical, QCA::Locking, QCA::LockingKeepPrivileges } |
Functions | |
QCA_EXPORT void | QCA::appendPluginDiagnosticText (const QString &text) |
QCA_EXPORT QString | QCA::appName () |
QCA_EXPORT QString | QCA::arrayToHex (const QByteArray &array) |
QCA_EXPORT void | QCA::clearPluginDiagnosticText () |
QCA_EXPORT QStringList | QCA::defaultFeatures () |
QCA_EXPORT Provider * | QCA::defaultProvider () |
QCA_EXPORT void | QCA::deinit () |
QCA_EXPORT Provider * | QCA::findProvider (const QString &name) |
QCA_EXPORT QVariant | QCA::getProperty (const QString &name) |
QCA_EXPORT QVariantMap | QCA::getProviderConfig (const QString &name) |
QCA_EXPORT QString | QCA::globalRandomProvider () |
QCA_EXPORT bool | QCA::haveSecureMemory () |
QCA_EXPORT bool | QCA::haveSecureRandom () |
QCA_EXPORT bool | QCA::haveSystemStore () |
QCA_EXPORT QByteArray | QCA::hexToArray (const QString &hexString) |
QCA_EXPORT void | QCA::init () |
QCA_EXPORT void | QCA::init (MemoryMode m, int prealloc) |
QCA_EXPORT bool | QCA::insertProvider (Provider *p, int priority=0) |
QCA_EXPORT bool | QCA::isSupported (const char *features, const QString &provider=QString()) |
QCA_EXPORT bool | QCA::isSupported (const QStringList &features, const QString &provider=QString()) |
QCA_EXPORT Logger * | QCA::logger () |
QCA_EXPORT QString | QCA::pluginDiagnosticText () |
QCA_EXPORT QStringList | QCA::pluginPaths () |
QCA_EXPORT int | QCA::providerPriority (const QString &name) |
QCA_EXPORT ProviderList | QCA::providers () |
QCA_EXPORT int | qcaMajorVersion () |
QCA_EXPORT int | qcaMinorVersion () |
QCA_EXPORT int | qcaPatchVersion () |
QCA_EXPORT int | qcaVersion () |
QCA_EXPORT const char * | qcaVersionStr () |
QCA_EXPORT void | QCA::saveProviderConfig (const QString &name) |
QCA_EXPORT void | QCA::scanForPlugins () |
QCA_EXPORT void | QCA::setAppName (const QString &name) |
QCA_EXPORT void | QCA::setGlobalRandomProvider (const QString &provider) |
QCA_EXPORT void | QCA::setProperty (const QString &name, const QVariant &value) |
QCA_EXPORT void | QCA::setProviderConfig (const QString &name, const QVariantMap &config) |
QCA_EXPORT void | QCA::setProviderPriority (const QString &name, int priority) |
QCA_EXPORT QStringList | QCA::supportedFeatures () |
QCA_EXPORT CertificateCollection | QCA::systemStore () |
QCA_EXPORT void | QCA::unloadAllPlugins () |
QCA_EXPORT bool | QCA::unloadProvider (const QString &name) |
Header file for core QCA infrastructure.
#include <QtCrypto>
instead. #define QCA_logTextMessage | ( | message, | |
severity | |||
) |
Log a text message.
This is an efficient function to avoid overhead of argument executions when log level blocks the message.
message | the text to log |
severity | the type of information to log |
#define QCA_logBinaryMessage | ( | blob, | |
severity | |||
) |
Log a binary message.
This is an efficient function to avoid overhead of argument executions when log level blocks the message.
blob | the blob to log |
severity | the type of information to log |
QCA_EXPORT int qcaVersion | ( | ) |
The current version of QCA.
This is equivalent to QCA_VERSION, except it provides a runtime check of the version of QCA that is being used.
QCA_EXPORT const char* qcaVersionStr | ( | ) |
The current version of QCA.
This is equivalent to QCA_VERSION_STR, except it provides a runtime check of the version of QCA that is being used.
QCA_EXPORT int qcaMajorVersion | ( | ) |
The current version of QCA.
This is equivalent to QCA_MAJOR_VERSION, except it provides a runtime check of the version of QCA that is being used.
QCA_EXPORT int qcaMinorVersion | ( | ) |
The current version of QCA.
This is equivalent to QCA_MINOR_VERSION, except it provides a runtime check of the version of QCA that is being used.
QCA_EXPORT int qcaPatchVersion | ( | ) |
The current version of QCA.
This is equivalent to QCA_PATCH_VERSION, except it provides a runtime check of the version of QCA that is being used.