2018-12-22 20:10:00 +00:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
|
|
|
##
|
|
|
|
## Author......: See docs/credits.txt
|
|
|
|
## License.....: MIT
|
|
|
|
##
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
2018-12-23 17:15:53 +00:00
|
|
|
use Digest::MD5 qw (md5_hex);
|
2018-12-22 20:10:00 +00:00
|
|
|
use Digest::SHA1 qw (sha1_hex);
|
|
|
|
|
2018-12-29 15:23:29 +00:00
|
|
|
sub module_constraints { [[0, 255], [-1, -1], [0, 55], [-1, -1], [-1, -1]] }
|
2018-12-23 17:15:53 +00:00
|
|
|
|
2018-12-22 20:10:00 +00:00
|
|
|
sub module_generate_hash
|
|
|
|
{
|
|
|
|
my $word = shift;
|
|
|
|
|
|
|
|
my $hash = sha1_hex (md5_hex (md5_hex ($word)));
|
|
|
|
|
|
|
|
return $hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub module_verify_hash
|
|
|
|
{
|
|
|
|
my $line = shift;
|
|
|
|
|
|
|
|
my ($hash, $word) = split (':', $line);
|
|
|
|
|
|
|
|
return unless defined $hash;
|
|
|
|
return unless defined $word;
|
|
|
|
|
2018-12-27 14:49:18 +00:00
|
|
|
my $word_packed = pack_if_HEX_notation ($word);
|
2018-12-22 20:10:00 +00:00
|
|
|
|
2018-12-27 14:49:18 +00:00
|
|
|
my $new_hash = module_generate_hash ($word_packed);
|
|
|
|
|
|
|
|
return ($new_hash, $word);
|
2018-12-22 20:10:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|