From 21c02b23244328bde515786b5989fbcbd883eb3c Mon Sep 17 00:00:00 2001 From: Gabriele Gristina Date: Sun, 13 Feb 2022 19:03:24 +0100 Subject: [PATCH] removed unused printf from 21420 test module --- tools/test_modules/m21420.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/test_modules/m21420.pm b/tools/test_modules/m21420.pm index cefcdabe6..15e95670a 100644 --- a/tools/test_modules/m21420.pm +++ b/tools/test_modules/m21420.pm @@ -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);