2019-02-21 12:52:01 +00:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
|
|
|
##
|
|
|
|
## Author......: See docs/credits.txt
|
|
|
|
## License.....: MIT
|
|
|
|
##
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
2019-02-26 20:20:07 +00:00
|
|
|
sub module_constraints { [[0, 256], [-1, -1], [0, 55], [-1, -1], [-1, -1]] }
|
2019-02-21 12:52:01 +00:00
|
|
|
|
2019-02-22 08:30:56 +00:00
|
|
|
sub hashCode
|
2019-02-21 12:52:01 +00:00
|
|
|
{
|
2019-02-22 08:30:56 +00:00
|
|
|
use integer;
|
|
|
|
|
2019-02-21 12:52:01 +00:00
|
|
|
my $word = shift;
|
|
|
|
|
|
|
|
my @chars = unpack ("C*", $word);
|
|
|
|
|
|
|
|
my $hash = 0;
|
|
|
|
|
|
|
|
while (my $c = shift @chars)
|
|
|
|
{
|
2019-02-22 08:30:56 +00:00
|
|
|
$hash = ($hash * 31) + $c;
|
2019-02-21 12:52:01 +00:00
|
|
|
}
|
|
|
|
|
2019-02-22 08:30:56 +00:00
|
|
|
return $hash & 0xffffffff;
|
2019-02-21 12:52:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub module_generate_hash
|
|
|
|
{
|
|
|
|
my $word = shift;
|
|
|
|
|
2019-02-22 08:30:56 +00:00
|
|
|
my $digest = hashCode ($word);
|
2019-02-21 12:52:01 +00:00
|
|
|
|
|
|
|
my $hash = sprintf ("%08x", $digest);
|
|
|
|
|
|
|
|
return $hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub module_verify_hash
|
|
|
|
{
|
|
|
|
my $line = shift;
|
|
|
|
|
|
|
|
my ($hash, $word) = split (':', $line);
|
|
|
|
|
|
|
|
return unless defined $hash;
|
|
|
|
return unless defined $word;
|
|
|
|
|
|
|
|
my $word_packed = pack_if_HEX_notation ($word);
|
|
|
|
|
|
|
|
my $new_hash = module_generate_hash ($word_packed);
|
|
|
|
|
|
|
|
return ($new_hash, $word);
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|