mirror of
https://github.com/hashcat/hashcat.git
synced 2024-12-28 01:18:35 +00:00
Added missing unit-test for -m 27900
This commit is contained in:
parent
d34616c423
commit
3f4dca13f9
57
tools/test_modules/m27900.pm
Normal file
57
tools/test_modules/m27900.pm
Normal file
@ -0,0 +1,57 @@
|
||||
#!/usr/bin/env perl
|
||||
|
||||
##
|
||||
## Author......: See docs/credits.txt
|
||||
## License.....: MIT
|
||||
##
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use Digest::CRC;
|
||||
|
||||
sub module_constraints { [[-1, -1], [-1, -1], [0, 31], [8, 8], [-1, -1]] }
|
||||
|
||||
sub module_generate_hash
|
||||
{
|
||||
my $word = shift;
|
||||
my $salt = shift;
|
||||
|
||||
my $iv = hex ($salt);
|
||||
|
||||
my $ctx = Digest::CRC->new
|
||||
(
|
||||
width => 32,
|
||||
init => $iv,
|
||||
xorout => 0xffffffff,
|
||||
refout => 1,
|
||||
poly => 0x1edc6f41,
|
||||
refin => 1,
|
||||
cont => 1
|
||||
);
|
||||
|
||||
$ctx->add ($word);
|
||||
|
||||
my $hash = sprintf ("%s:%s", $ctx->hexdigest (), $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