challenge: Propagate failed challenge to caller

* If a removed Yubikey is to blame, re-inserting the Yubikey won't
  resolve the issue.  Hot plug isn't supported at this point.
* The caller should detect the error and cancel the database write.

Signed-off-by: Kyle Manna <kyle@kylemanna.com>
This commit is contained in:
Kyle Manna 2014-09-06 17:49:39 -07:00
parent ba8fd25604
commit faa055010f
6 changed files with 26 additions and 10 deletions

View file

@ -176,9 +176,9 @@ QByteArray Database::transformedMasterKey() const
return m_data.transformedMasterKey;
}
QByteArray Database::challengeMasterSeed(const QByteArray& masterSeed) const
bool Database::challengeMasterSeed(const QByteArray& masterSeed, QByteArray& result) const
{
return m_data.key.challenge(masterSeed);
return m_data.key.challenge(masterSeed, result);
}
void Database::setCipher(const Uuid& cipher)