1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-22 22:58:30 +00:00
This commit is contained in:
Jens Steube 2020-06-12 08:58:23 +02:00
commit 6a3f0ef9ea
21 changed files with 126 additions and 19 deletions

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

7
tools/code_generators/GEN_truncate_block_16x4_be.pl Normal file → Executable file
View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

7
tools/code_generators/GEN_truncate_block_16x4_le.pl Normal file → Executable file
View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

7
tools/code_generators/GEN_truncate_block_4x4_be.pl Normal file → Executable file
View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

7
tools/code_generators/GEN_truncate_block_4x4_le.pl Normal file → Executable file
View File

@ -1,4 +1,9 @@
#!/usr/bin/perl
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;

View File

@ -23,6 +23,7 @@ cpan install Authen::Passphrase::LANManager \
Crypt::ECB \
Crypt::Eksblowfish::Bcrypt \
Crypt::GCrypt \
Crypt::Mode::CBC \
Crypt::Mode::ECB \
Crypt::MySQL \
Crypt::OpenSSH::ChachaPoly \
@ -50,11 +51,13 @@ cpan install Authen::Passphrase::LANManager \
Digest::SHA1 \
Digest::SHA3 \
Digest::SipHash \
Encode \
JSON \
MIME::Base32 \
MIME::Base64 \
Net::DNS::RR::NSEC3 \
Net::DNS::SEC \
POSIX \
Text::Iconv \
;
@ -66,6 +69,15 @@ pip2 uninstall -y pycryptodome
ERRORS=$((ERRORS+$?))
php --version > /dev/null 2> /dev/null
if [ "$?" -ne 0 ]
then
echo '[ ERROR ] php must be installed for some unit tests'
ERRORS=$((ERRORS+1))
fi
echo
if [ $ERRORS -eq 0 ]; then
echo '[ OK ] All commands were successful'

0
tools/securenotes2hashcat.pl Normal file → Executable file
View File