diff --git a/docs/changes.txt b/docs/changes.txt index 0be640eff..c2ac91ee8 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -8,6 +8,7 @@ - Added hash-mode 18500 sha1(md5(md5($pass))) - Added hash-mode 18600 (Open Document Format (ODF) 1.1 (SHA-1, Blowfish)) - Added hash-mode 18700 Java Object hashCode() +- Added hash-mode 18800 Blockchain, My Wallet, Second Password (SHA256) - Added hash-mode 18900 Android Backup ## diff --git a/docs/readme.txt b/docs/readme.txt index 500173e16..5d5f0ee2f 100644 --- a/docs/readme.txt +++ b/docs/readme.txt @@ -257,6 +257,7 @@ NVIDIA GPUs require "NVIDIA Driver" (367.x or later) - Bitcoin/Litecoin wallet.dat - Blockchain, My Wallet - Blockchain, My Wallet, V2 +- Blockchain, My Wallet, Second Password (SHA256) - Electrum Wallet (Salt-Type 1-2) - KeePass 1 (AES/Twofish) and KeePass 2 (AES) - JKS Java Key Store Private Keys (SHA1) diff --git a/tools/test_modules/m18800.pm b/tools/test_modules/m18800.pm index 2e42cd111..e9e49a1a6 100644 --- a/tools/test_modules/m18800.pm +++ b/tools/test_modules/m18800.pm @@ -30,15 +30,11 @@ sub module_generate_hash my $digest = sha256 ($UUID . $word); -print unpack ("H*", $digest). "\n"; - for (my $i = 0; $i < $iter - 1; $i++) { $digest = sha256 ($digest); } -print unpack ("H*", $digest). "\n"; - my $data = "bs:" . $digest . $salt . pack ("L<", $iter); # add the crc32 checksum at the end (4 bytes) diff --git a/tools/test_modules/m18900.pm b/tools/test_modules/m18900.pm index 502c480ff..3826386cd 100644 --- a/tools/test_modules/m18900.pm +++ b/tools/test_modules/m18900.pm @@ -35,8 +35,6 @@ sub module_generate_hash my $key_bin = $kdf->PBKDF2 ($user_salt_bin, $word); -print unpack ("H*", $key_bin), "\n"; - my $iv_bin = pack ("H*", $user_iv); my $cipher = Crypt::CBC->new ({