|
|
@@ -589,7 +589,7 @@ QByteArray encryptStringAsymmetric(EVP_PKEY *publicKey, const QByteArray& data)
|
|
|
qCInfo(lcCse()) << "Error retrieving the size of the encrypted data";
|
|
|
exit(1);
|
|
|
} else {
|
|
|
- qCInfo(lcCse()) << "Encrption Length:" << outLen;
|
|
|
+ qCInfo(lcCse()) << "Encryption Length:" << outLen;
|
|
|
}
|
|
|
|
|
|
unsigned char *out = (uchar*) OPENSSL_malloc(outLen);
|
|
|
@@ -623,7 +623,7 @@ void ClientSideEncryption::initialize()
|
|
|
{
|
|
|
qCInfo(lcCse()) << "Initializing";
|
|
|
if (!_account->capabilities().clientSideEncryptionAvaliable()) {
|
|
|
- qCInfo(lcCse()) << "No Client side encryption avaliable on server.";
|
|
|
+ qCInfo(lcCse()) << "No Client side encryption available on server.";
|
|
|
emit initializationFinished();
|
|
|
return;
|
|
|
}
|
|
|
@@ -1376,7 +1376,7 @@ bool EncryptionHelper::fileEncryption(const QByteArray &key, const QByteArray &i
|
|
|
qCDebug(lcCse) << "Could not open input file for reading" << input->errorString();
|
|
|
}
|
|
|
if (!output->open(QIODevice::WriteOnly)) {
|
|
|
- qCDebug(lcCse) << "Could not oppen output file for writting" << output->errorString();
|
|
|
+ qCDebug(lcCse) << "Could not oppen output file for writing" << output->errorString();
|
|
|
}
|
|
|
|
|
|
// Init
|