TEST: No private keys left in any file on disk after wallet encryption/re-encryption is complete.
Preparation:
Start with an unencrypted wallet.dat; save a copy to wallet.unencrypted.dat
Extract all private keys into a 'privatekeys.txt' file:
Fetch or clone sipa's 'dumpallkeys' branch and build a bitcoind with it
https://github.com/sipa/bitcoin/tree/dumpallkeys
Run it: bitcoind -datadir=... -daemon
Then, after it has started up:
bitcoind -datadir=... gethexprivkeys > privatekeys.txt
VERIFY: bfind.py privatekeys.txt wallet.dat finds all the keys.
TESTS
1. Encrypt wallet.dat using patched bitcoin/bitcoind
VERIFY:
bfind.py privatekeys.txt wallet.dat finds no keys
no temporary database files left behind.
Generate a couple of new private keys, perform some test sends/receives to/from
those keys
Extract all private keys from encrypted wallet
(using sipa's gethexprivkeys after unlocking wallet using walletpassphrase)
VERIFY:
bfind.py privatekeys.txt wallet.dat finds no keys
2. Encrypt wallet.dat using version 0.4.0 or previous 0.5.0 release candidate
VERIFY:
bfind.py privatekeys.txt wallet.dat finds keys
bfind.py privatekeys.txt database/log.* finds keys
Run patched bitcoin/bitcoind
VERIFY:
bfind.py privatekeys.txt wallet.dat finds no keys
no temporary database files left behind.
3. Run patched bitcoin/bitcoind against a new, empty -datadir
Encrypt wallet.
Extract all private keys from wallet (unlock/gethexprivkeys)
VERIFY:
bfind.py newprivatekeys.txt wallet.dat Finds no keys