1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-14 11:48:57 +00:00
hashcat/tools/test_modules/m120.pm
R. Yushaev 444d11a74b Add test modules
Add tests for modes 0, 100, 110, 120, 18400, 18600. Update readme.
2018-12-20 19:18:06 +01:00

42 lines
668 B
Perl

#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use Digest::SHA qw (sha1_hex);
sub module_generate_hash
{
my $word = shift;
my $salt = shift // random_numeric_string (int (rand 16));
my $hash = sha1_hex ($salt . $word) . ":$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;
$word = pack_if_HEX_notation ($word);
my $new_hash = module_generate_hash ($word, $salt);
return unless $new_hash eq "$hash:$salt";
return $new_hash;
}
1;