mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
database: Pass master seed to challenge response keys
* Pass the master seed from the database to CompositeKey::challenge() function which will in turn issue challenges to all selected drivers. Signed-off-by: Kyle Manna <kyle@kylemanna.com>
This commit is contained in:
parent
ccd6704b8f
commit
e354a0ee0e
2 changed files with 6 additions and 0 deletions
|
@ -176,6 +176,11 @@ QByteArray Database::transformedMasterKey() const
|
|||
return m_data.transformedMasterKey;
|
||||
}
|
||||
|
||||
QByteArray Database::challengeMasterSeed(const QByteArray& masterSeed) const
|
||||
{
|
||||
return m_data.key.challenge(masterSeed);
|
||||
}
|
||||
|
||||
void Database::setCipher(const Uuid& cipher)
|
||||
{
|
||||
Q_ASSERT(!cipher.isNull());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue