You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hashcat/tools/test_modules/m11500.pm

58 lines
933 B

#!/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;
$salt = "00000000";
my $ctx = Digest::CRC->new
(
width => 32,
init => hex ($salt),
xorout => 0xffffffff,
refout => 1,
poly => 0x04c11db7,
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;