From 1a4d160311df8b3aaf0e33fe0c3b77f1862c395e Mon Sep 17 00:00:00 2001 From: stoffu Date: Wed, 7 Nov 2018 10:47:10 +0900 Subject: [PATCH] wallet2: remove redundant chacha key generation in store_keys --- src/wallet/wallet2.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 58ed5dcad..df947712e 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -3144,7 +3144,6 @@ bool wallet2::store_keys(const std::string& keys_file_name, const epee::wipeable account_data = buffer.GetString(); // Encrypt the entire JSON object. - crypto::generate_chacha_key(password.data(), password.size(), key, m_kdf_rounds); std::string cipher; cipher.resize(account_data.size()); keys_file_data.iv = crypto::rand();