QxOrm
1.5.0
C++ Object Relational Mapping library
|
Simple encryption and decryption of strings and byte arrays. More...
#include <QxSimpleCrypt.h>
Simple encryption and decryption of strings and byte arrays.
This class provides a simple implementation of encryption and decryption of strings and byte arrays : http://qt-project.org/wiki/Simple_encryption
The class uses a 64 bit key. Simply create an instance of the class, set the key, and use the encryptToString() method to calculate an encrypted version of the input string. To decrypt that string again, use an instance of QxSimpleCrypt initialized with the same key, and call the decryptToString() method with the encrypted string. If the key matches, the decrypted version of the string will be returned again.
If you do not provide a key, or if something else is wrong, the encryption and decryption function will return an empty string or will return a string containing nonsense. lastError() will return a value indicating if the method was succesful, and if not, why not.
QxSimpleCrypt is prepared for the case that the encryption and decryption algorithm is changed in a later version, by prepending a version identifier to the cypertext.
Definition at line 73 of file QxSimpleCrypt.h.
CompressionMode describes if compression will be applied to the data to be encrypted.
Definition at line 82 of file QxSimpleCrypt.h.
Definition at line 227 of file QxSimpleCrypt.h.
Error describes the type of error that occured.
Definition at line 105 of file QxSimpleCrypt.h.
IntegrityProtectionMode describes measures taken to make it possible to detect problems with the data or wrong decryption keys.
Measures involve adding a checksum or a cryptograhpic hash to the data to be encrypted. This increases the length of the resulting cypertext, but makes it possible to check if the plaintext appears to be valid after decryption.
Definition at line 96 of file QxSimpleCrypt.h.
qx::QxSimpleCrypt::QxSimpleCrypt | ( | ) |
Constructor.
Constructs a QxSimpleCrypt instance without a valid key set on it.
qx::QxSimpleCrypt::QxSimpleCrypt | ( | quint64 | key | ) | [explicit] |
CompressionMode qx::QxSimpleCrypt::compressionMode | ( | ) | const [inline] |
Returns the CompressionMode that is currently in use.
Definition at line 144 of file QxSimpleCrypt.h.
QByteArray qx::QxSimpleCrypt::decryptToByteArray | ( | const QString & | cyphertext | ) |
Decrypts a cyphertext string encrypted with this class with the set key back to the plain text version.
If an error occured, such as non-matching keys between encryption and decryption, an empty string or a string containing nonsense may be returned.
QByteArray qx::QxSimpleCrypt::decryptToByteArray | ( | QByteArray | cypher | ) |
Decrypts a cyphertext binary encrypted with this class with the set key back to the plain text version.
If an error occured, such as non-matching keys between encryption and decryption, an empty string or a string containing nonsense may be returned.
QString qx::QxSimpleCrypt::decryptToString | ( | const QString & | cyphertext | ) |
Decrypts a cyphertext string encrypted with this class with the set key back to the plain text version.
If an error occured, such as non-matching keys between encryption and decryption, an empty string or a string containing nonsense may be returned.
QString qx::QxSimpleCrypt::decryptToString | ( | QByteArray | cypher | ) |
Decrypts a cyphertext binary encrypted with this class with the set key back to the plain text version.
If an error occured, such as non-matching keys between encryption and decryption, an empty string or a string containing nonsense may be returned.
QByteArray qx::QxSimpleCrypt::encryptToByteArray | ( | const QString & | plaintext | ) |
Encrypts the
This method returns a byte array, that is useable for storing a binary format. If you need a string you can store in a text file, use encryptToString() instead.
QByteArray qx::QxSimpleCrypt::encryptToByteArray | ( | QByteArray | plaintext | ) |
Encrypts the
This method returns a byte array, that is useable for storing a binary format. If you need a string you can store in a text file, use encryptToString() instead.
QString qx::QxSimpleCrypt::encryptToString | ( | const QString & | plaintext | ) |
Encrypts the
QString qx::QxSimpleCrypt::encryptToString | ( | QByteArray | plaintext | ) |
Encrypts the
bool qx::QxSimpleCrypt::hasKey | ( | ) | const [inline] |
Returns true if QxSimpleCrypt has been initialized with a key.
Definition at line 132 of file QxSimpleCrypt.h.
IntegrityProtectionMode qx::QxSimpleCrypt::integrityProtectionMode | ( | ) | const [inline] |
Returns the IntegrityProtectionMode that is currently in use.
Definition at line 156 of file QxSimpleCrypt.h.
Error qx::QxSimpleCrypt::lastError | ( | ) | const [inline] |
Returns the last error that occurred.
Definition at line 161 of file QxSimpleCrypt.h.
qx::QxSimpleCrypt::Q_DECLARE_FLAGS | ( | CryptoFlags | , |
CryptoFlag | |||
) |
void qx::QxSimpleCrypt::setCompressionMode | ( | CompressionMode | mode | ) | [inline] |
Sets the compression mode to use when encrypting data. The default mode is Auto.
Note that decryption is not influenced by this mode, as the decryption recognizes what mode was used when encrypting.
Definition at line 140 of file QxSimpleCrypt.h.
void qx::QxSimpleCrypt::setIntegrityProtectionMode | ( | IntegrityProtectionMode | mode | ) | [inline] |
Sets the integrity mode to use when encrypting data. The default mode is Checksum.
Note that decryption is not influenced by this mode, as the decryption recognizes what mode was used when encrypting.
Definition at line 152 of file QxSimpleCrypt.h.
void qx::QxSimpleCrypt::setKey | ( | quint64 | key | ) |
(Re-) initializes the key with the given
void qx::QxSimpleCrypt::splitKey | ( | ) | [private] |
Definition at line 240 of file QxSimpleCrypt.h.
quint64 qx::QxSimpleCrypt::m_key [private] |
Definition at line 238 of file QxSimpleCrypt.h.
QVector<char> qx::QxSimpleCrypt::m_keyParts [private] |
Definition at line 239 of file QxSimpleCrypt.h.
Error qx::QxSimpleCrypt::m_lastError [private] |
Definition at line 242 of file QxSimpleCrypt.h.
Definition at line 241 of file QxSimpleCrypt.h.