Disable the installation of the jobd routines, and also deactivate the 2nd layer SSL encryption through a bridge for the moment (base64 only right now).

This commit is contained in:
Ken Moore
2016-06-21 15:14:29 -04:00
parent 5da15e8f0f
commit bcaf188dc1
4 changed files with 11 additions and 10 deletions

View File

@@ -344,7 +344,7 @@ QString AuthorizationManager::encryptString(QString str, QByteArray key){
if(key.contains("PUBLIC KEY--")){ pub=true; }
else if(key.contains(" PRIVATE KEY--")){ pub=false; }
else{ return str; } //unknown encryption - just return as-is
//return str.toLocal8Bit().toBase64(); //TEMPORARY BYPASS
return str.toLocal8Bit().toBase64(); //TEMPORARY BYPASS
//qDebug() << "Start encoding String:" << pub << str.length() << str << key;
//Reset/Load some SSL stuff
//OpenSSL_add_all_algorithms();
@@ -433,7 +433,7 @@ QString AuthorizationManager::decryptString(QString str, QByteArray key){
return str;
}
//qDebug() << "Decoded String:" << bytes;
//return QString(bytes); //TEMPORARY BYPASS
return QString(blocks.join()); //TEMPORARY BYPASS
//qDebug() << "Start decoding String:" << pub << str;//<< key;
//Reset/Load some SSL stuff