mirror of
https://github.com/hashcat/hashcat.git
synced 2025-02-25 05:42:08 +00:00
Add unit test modules for -m 14000 and -m 14100
This commit is contained in:
parent
2c47c03e26
commit
02bdf8dda3
48
tools/test_modules/m14000.pm
Normal file
48
tools/test_modules/m14000.pm
Normal file
@ -0,0 +1,48 @@
|
||||
#!/usr/bin/env perl
|
||||
|
||||
##
|
||||
## Author......: See docs/credits.txt
|
||||
## License.....: MIT
|
||||
##
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use Crypt::DES;
|
||||
|
||||
sub module_constraints { [[8, 8], [16, 16], [8, 8], [16, 16], [-1, -1]] }
|
||||
|
||||
sub module_generate_hash
|
||||
{
|
||||
my $word = shift;
|
||||
my $salt = shift;
|
||||
|
||||
my $cipher = new Crypt::DES ($word);
|
||||
|
||||
my $pt_bin = pack ("H*", $salt);
|
||||
|
||||
my $ct_bin = $cipher->encrypt ($pt_bin);
|
||||
|
||||
my $hash = sprintf ("%s:%s", unpack ("H*", $ct_bin), $salt);
|
||||
|
||||
return $hash;
|
||||
}
|
||||
|
||||
sub module_verify_hash
|
||||
{
|
||||
my $line = shift;
|
||||
|
||||
my ($hash, $salt, $word) = split (':', $line);
|
||||
|
||||
return unless defined $hash;
|
||||
return unless defined $salt;
|
||||
return unless defined $word;
|
||||
|
||||
my $word_packed = pack_if_HEX_notation ($word);
|
||||
|
||||
my $new_hash = module_generate_hash ($word_packed, $salt);
|
||||
|
||||
return ($new_hash, $word);
|
||||
}
|
||||
|
||||
1;
|
56
tools/test_modules/m14100.pm
Normal file
56
tools/test_modules/m14100.pm
Normal file
@ -0,0 +1,56 @@
|
||||
#!/usr/bin/env perl
|
||||
|
||||
##
|
||||
## Author......: See docs/credits.txt
|
||||
## License.....: MIT
|
||||
##
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use Crypt::DES;
|
||||
|
||||
sub module_constraints { [[24, 24], [16, 16], [24, 24], [16, 16], [-1, -1]] }
|
||||
|
||||
sub module_generate_hash
|
||||
{
|
||||
my $word = shift;
|
||||
my $salt = shift;
|
||||
|
||||
my $word1 = substr ($word, 0, 8);
|
||||
my $word2 = substr ($word, 8, 8);
|
||||
my $word3 = substr ($word, 16, 8);
|
||||
|
||||
my $cipher1 = new Crypt::DES ($word1);
|
||||
my $cipher2 = new Crypt::DES ($word2);
|
||||
my $cipher3 = new Crypt::DES ($word3);
|
||||
|
||||
my $pt1_bin = pack ("H*", $salt);
|
||||
|
||||
my $ct1_bin = $cipher1->encrypt ($pt1_bin);
|
||||
my $ct2_bin = $cipher2->decrypt ($ct1_bin);
|
||||
my $ct3_bin = $cipher3->encrypt ($ct2_bin);
|
||||
|
||||
my $hash = sprintf ("%s:%s", unpack ("H*", $ct3_bin), $salt);
|
||||
|
||||
return $hash;
|
||||
}
|
||||
|
||||
sub module_verify_hash
|
||||
{
|
||||
my $line = shift;
|
||||
|
||||
my ($hash, $salt, $word) = split (':', $line);
|
||||
|
||||
return unless defined $hash;
|
||||
return unless defined $salt;
|
||||
return unless defined $word;
|
||||
|
||||
my $word_packed = pack_if_HEX_notation ($word);
|
||||
|
||||
my $new_hash = module_generate_hash ($word_packed, $salt);
|
||||
|
||||
return ($new_hash, $word);
|
||||
}
|
||||
|
||||
1;
|
Loading…
Reference in New Issue
Block a user