1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-03 12:21:07 +00:00

Merge pull request #3176 from matrix/m21420_testModule

removed unused printf from 21420 test module
This commit is contained in:
Jens Steube 2022-02-23 09:58:34 +01:00 committed by GitHub
commit 78b82f0fd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,6 @@ sub module_generate_hash
my $word = shift;
my $salt = shift;
print unpack ("H*", sha256 ($word)), "\n";
my $digest = sha256 ($salt . sha256 ($word));
my $hash = sprintf ("%s:%s", unpack ("H*", $digest), $salt);