mirror of
https://github.com/outbackdingo/sysadm.git
synced 2026-01-27 18:20:23 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user