fixed bug in tor v3 backward compatibility with v2

This commit is contained in:
csoler 2020-10-06 23:02:56 +02:00
parent 3912c6562e
commit 8d2a8f8ced

View File

@ -132,12 +132,18 @@ bool CryptoKey::loadFromFile(const QString& path)
QByteArray data = file.readAll();
file.close();
if(data.startsWith("-----"))
if(data.contains("-----BEGIN RSA PRIVATE KEY-----"))
{
std::cerr << "Note: Reading/converting Tor v2 key format." << std::endl;
// This to be compliant with old format. New format is oblivious to the type of key so we dont need a header
data = data.replace("-----BEGIN RSA PRIVATE KEY-----",nullptr);
data = data.replace("-----END RSA PRIVATE KEY-----",nullptr);
data = data.replace("\n",nullptr);
data = data.replace("\t",nullptr);
data = "RSA1024:"+data;
}
std::cerr << "Have read the following key: " << std::endl;
std::cerr << QString(data).toStdString() << std::endl;