Remove some debugging leftovers in unit tests

pull/1935/head
jsteube 5 years ago
parent d0d4ce9f8c
commit 9b916918de

@ -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
##

@ -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)

@ -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)

@ -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 ({

Loading…
Cancel
Save