@@ -605,19 +605,30 @@ static bool EncryptMasterKey(const SecureString& wallet_passphrase, const CKeyin
605
605
return true ;
606
606
}
607
607
608
- bool CWallet::Unlock (const SecureString& strWalletPassphrase )
608
+ static bool DecryptMasterKey (const SecureString& wallet_passphrase, const CMasterKey& master_key, CKeyingMaterial& plain_master_key )
609
609
{
610
610
CCrypter crypter;
611
+ if (!crypter.SetKeyFromPassphrase (wallet_passphrase, master_key.vchSalt , master_key.nDeriveIterations , master_key.nDerivationMethod )) {
612
+ return false ;
613
+ }
614
+ if (!crypter.Decrypt (master_key.vchCryptedKey , plain_master_key)) {
615
+ return false ;
616
+ }
617
+
618
+ return true ;
619
+ }
620
+
621
+ bool CWallet::Unlock (const SecureString& strWalletPassphrase)
622
+ {
611
623
CKeyingMaterial _vMasterKey;
612
624
613
625
{
614
626
LOCK (cs_wallet);
615
627
for (const MasterKeyMap::value_type& pMasterKey : mapMasterKeys)
616
628
{
617
- if (!crypter.SetKeyFromPassphrase (strWalletPassphrase, pMasterKey.second .vchSalt , pMasterKey.second .nDeriveIterations , pMasterKey.second .nDerivationMethod ))
618
- return false ;
619
- if (!crypter.Decrypt (pMasterKey.second .vchCryptedKey , _vMasterKey))
629
+ if (!DecryptMasterKey (strWalletPassphrase, pMasterKey.second , _vMasterKey)) {
620
630
continue ; // try another master key
631
+ }
621
632
if (Unlock (_vMasterKey)) {
622
633
// Now that we've unlocked, upgrade the key metadata
623
634
UpgradeKeyMetadata ();
@@ -638,14 +649,12 @@ bool CWallet::ChangeWalletPassphrase(const SecureString& strOldWalletPassphrase,
638
649
LOCK2 (m_relock_mutex, cs_wallet);
639
650
Lock ();
640
651
641
- CCrypter crypter;
642
652
CKeyingMaterial _vMasterKey;
643
653
for (MasterKeyMap::value_type& pMasterKey : mapMasterKeys)
644
654
{
645
- if (!crypter.SetKeyFromPassphrase (strOldWalletPassphrase, pMasterKey.second .vchSalt , pMasterKey.second .nDeriveIterations , pMasterKey.second .nDerivationMethod ))
646
- return false ;
647
- if (!crypter.Decrypt (pMasterKey.second .vchCryptedKey , _vMasterKey))
655
+ if (!DecryptMasterKey (strOldWalletPassphrase, pMasterKey.second , _vMasterKey)) {
648
656
return false ;
657
+ }
649
658
if (Unlock (_vMasterKey))
650
659
{
651
660
if (!EncryptMasterKey (strNewWalletPassphrase, _vMasterKey, pMasterKey.second )) {
0 commit comments