mirror of
https://github.com/monero-project/monero.git
synced 2025-08-23 14:45:07 -04:00
Use domain-separated ChaCha20 for in-memory key encryption
This commit is contained in:
parent
5d850dde99
commit
921dd8dde5
6 changed files with 173 additions and 51 deletions
|
@ -4349,9 +4349,24 @@ bool wallet2::load_keys_buf(const std::string& keys_buf, const epee::wipeable_st
|
|||
|
||||
if (r)
|
||||
{
|
||||
// Decrypt keys, using one of two possible methods
|
||||
if (encrypted_secret_keys)
|
||||
{
|
||||
// First try the updated method
|
||||
m_account.decrypt_keys(key);
|
||||
load_info.is_legacy_key_encryption = false;
|
||||
|
||||
// Test address construction to see if decryption succeeded
|
||||
const cryptonote::account_keys &keys = m_account.get_keys();
|
||||
hw::device &hwdev = m_account.get_device();
|
||||
if (!hwdev.verify_keys(keys.m_view_secret_key, keys.m_account_address.m_view_public_key) || !hwdev.verify_keys(keys.m_spend_secret_key, keys.m_account_address.m_spend_public_key))
|
||||
{
|
||||
// Updated method failed; try the legacy method
|
||||
// Note that we must first encrypt the keys again with the same IV
|
||||
m_account.encrypt_keys_same_iv(key);
|
||||
m_account.decrypt_legacy(key);
|
||||
load_info.is_legacy_key_encryption = true;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -5555,6 +5570,7 @@ void wallet2::load(const std::string& wallet_, const epee::wipeable_string& pass
|
|||
{
|
||||
clear();
|
||||
prepare_file_names(wallet_);
|
||||
MINFO("Keys file: " << m_keys_file);
|
||||
|
||||
// determine if loading from file system or string buffer
|
||||
bool use_fs = !wallet_.empty();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue