aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.cpp
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2011-11-30 17:30:54 -0800
committerGavin Andresen <[email protected]>2011-11-30 17:30:54 -0800
commita7120a3647b17878914da0b40655edcc5a9da59f (patch)
treee196c290b626a69452dd1f1932ec7bb52cd148f0 /src/wallet.cpp
parentMerge pull request #667 from laanwj/homeaddricons (diff)
parentImplement an mlock()'d string class for storing passphrases (diff)
downloaddiscoin-a7120a3647b17878914da0b40655edcc5a9da59f.tar.xz
discoin-a7120a3647b17878914da0b40655edcc5a9da59f.zip
Merge pull request #666 from nobled/secstrings
Implement an mlock()'d string class for storing passphrases
Diffstat (limited to 'src/wallet.cpp')
-rw-r--r--src/wallet.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp
index af80cc16d..28babdb3e 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -42,7 +42,7 @@ bool CWallet::AddCryptedKey(const vector<unsigned char> &vchPubKey, const vector
return false;
}
-bool CWallet::Unlock(const string& strWalletPassphrase)
+bool CWallet::Unlock(const SecureString& strWalletPassphrase)
{
if (!IsLocked())
return false;
@@ -63,7 +63,7 @@ bool CWallet::Unlock(const string& strWalletPassphrase)
return false;
}
-bool CWallet::ChangeWalletPassphrase(const string& strOldWalletPassphrase, const string& strNewWalletPassphrase)
+bool CWallet::ChangeWalletPassphrase(const SecureString& strOldWalletPassphrase, const SecureString& strNewWalletPassphrase)
{
bool fWasLocked = IsLocked();
@@ -122,7 +122,7 @@ public:
)
};
-bool CWallet::EncryptWallet(const string& strWalletPassphrase)
+bool CWallet::EncryptWallet(const SecureString& strWalletPassphrase)
{
if (IsCrypted())
return false;