Secure config WIP

This commit is contained in:
pokamest 2022-08-24 18:51:35 +03:00
parent 14384131f4
commit 415d18338e
2 changed files with 1 additions and 2 deletions

View file

@ -3,4 +3,5 @@
void MobileUtils::shareText(const QStringList&) {}
void MobileUtils::writeToKeychain(const QString&, const QByteArray &) {}
bool MobileUtils::deleteFromKeychain(const QString& tag) { return false; }
QByteArray MobileUtils::readFromKeychain(const QString&) { return {}; }

View file

@ -191,7 +191,6 @@ QByteArray SecureQSettings::getEncKey() const
return {};
}
}
//qDebug() << "SecureQSettings::getEncKey() key" << m_key.size();
return m_key;
}
@ -217,7 +216,6 @@ QByteArray SecureQSettings::getEncIv() const
return {};
}
}
//qDebug() << "SecureQSettings::getEncIv() iv" << m_iv.size();
return m_iv;
}