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

@@ -223,6 +223,7 @@ QString AuthorizationManager::DecryptSSLString(QString encstring, QString pubkey
QByteArray enc;
enc.append(encstring);
enc = QByteArray::fromBase64(enc);
//return QString(enc); //BYPASS - only use BASE64 for now (skip 2nd layer SSL encryption)
QByteArray pkey;
pkey.append(pubkey);
pkey = QByteArray::fromBase64(pkey);