1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-02-16 17:42:04 +00:00

Merge pull request #283 from Fist0urs/Keepass

-m 13400 Cosmetic changes + remove commented part
This commit is contained in:
Jens Steube 2016-04-02 15:55:06 +02:00
commit 496522c64a
2 changed files with 3 additions and 3 deletions

View File

@ -743,7 +743,7 @@ const char *USAGE_BIG[] =
" 8200 = 1Password, cloudkeychain",
" 11300 = Bitcoin/Litecoin wallet.dat",
" 12700 = Blockchain, My Wallet",
" 13400 = Keepass 1 (AES/Twofish) and Keepass 2 (AES)"
" 13400 = Keepass 1 (AES/Twofish) and Keepass 2 (AES)",
"",
NULL
};

View File

@ -8462,7 +8462,7 @@ sub get_random_axcrypt_salt
sub get_random_keepass_salt
{
my $version = 1;# get_random_num (1, 3);
my $version = get_random_num (1, 3);
my $algorithm;
@ -8472,7 +8472,7 @@ sub get_random_keepass_salt
if ($version == 1)
{
$algorithm = 1;#get_random_num (0, 2);
$algorithm = get_random_num (0, 2);
$iteration = get_random_num (50000, 100000);