1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-06-25 01:18:57 +00:00

Merge pull request #2484 from philsmd/master

minor: add "use warnings;" to every perl script
This commit is contained in:
Jens Steube 2020-07-20 11:12:22 +02:00 committed by GitHub
commit 1dd43686cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 0 deletions

View File

@ -6,6 +6,7 @@
## ##
use strict; use strict;
use warnings;
use Authen::Passphrase::NTHash; use Authen::Passphrase::NTHash;
use Digest::HMAC qw (hmac hmac_hex); use Digest::HMAC qw (hmac hmac_hex);

View File

@ -6,6 +6,7 @@
## ##
use strict; use strict;
use warnings;
use Authen::Passphrase::NTHash; use Authen::Passphrase::NTHash;
use Digest::HMAC qw (hmac hmac_hex); use Digest::HMAC qw (hmac hmac_hex);

View File

@ -6,6 +6,7 @@
## ##
use strict; use strict;
use warnings;
use Digest::SHA qw (sha256); use Digest::SHA qw (sha256);
use MIME::Base64 qw (encode_base64); use MIME::Base64 qw (encode_base64);

View File

@ -6,6 +6,7 @@
## ##
use strict; use strict;
use warnings;
use Digest::SHA qw (sha1); use Digest::SHA qw (sha1);