1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-07-23 23:18:21 +00:00

Merge pull request #4337 from matrix/perl_gost_external

Unit tests: Updated install_modules.sh to use an external module for Digest::GOST, due to maintenance being discontinued
This commit is contained in:
hashcat-bot 2025-07-15 19:14:17 +02:00 committed by GitHub
commit d811b76124
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -169,6 +169,7 @@
- Unit tests: Updated install_modules.sh with Crypt::Argon2
- Unit tests: Updated install_modules.sh with Crypt::Passwd::XS, to test suite works also on Apple (ex: 1800)
- Unit tests: Updated install_modules.sh to use an external module for Digest::BLAKE2, due to maintenance being discontinued
- Unit tests: Updated install_modules.sh to use an external module for Digest::GOST, due to maintenance being discontinued
- Unit tests: Updated install_modules.sh to use an external package for pygost, due to not available anymore
- Unit tests: Updated install_modules.sh to use cpanm instead of cpan
- Unit tests: Updated install_modules.sh to remove php and Crypt::GCrypt (updated relative test modules)

View File

@ -74,7 +74,6 @@ cpanm Authen::Passphrase::LANManager \
Data::Types \
Digest::CMAC \
Digest::CRC \
Digest::GOST \
Digest::HMAC \
Digest::HMAC_MD5 \
Digest::Keccak \
@ -103,6 +102,9 @@ ERRORS=$((ERRORS+$?))
cpanm https://github.com/matrix/p5-Digest-BLAKE2.git
ERRORS=$((ERRORS+$?))
cpanm https://github.com/matrix/digest-gost.git
ERRORS=$((ERRORS+$?))
# checks for pyenv
pyenv_enabled=0