1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-07-23 15:08:37 +00:00

Unit tests: Updated install_modules.sh to use an external module for Digest::BLAKE2, due to maintenance being discontinued

This commit is contained in:
Gabriele Gristina 2025-07-12 12:22:40 +02:00
parent 56dd7f7e2b
commit 3f79a20429
No known key found for this signature in database
GPG Key ID: 9F68B59298F311F0
2 changed files with 5 additions and 1 deletions

View File

@ -163,6 +163,7 @@
- Scrypt: Increase buffer sizes in module for hash mode 8900 to allow longer scrypt digests
- Unicode: Update UTF-8 to UTF-16 conversion to match RFC 3629
- Unit tests: Updated install_modules.sh with Crypt::Argon2
- Unit tests: Updated install_modules.sh to use an external module for Digest::BLAKE2, due to maintenance being discontinued
- User Options: Added error message when mixing --username and --show to warn users of exponential delay
- MetaMask: update extraction tool to support MetaMask Mobile wallets
- SecureCRT MasterPassphrase v2: update module, pure kernels and test unit. Add optimized kernels.

View File

@ -45,7 +45,6 @@ cpan install Authen::Passphrase::LANManager \
Crypt::Twofish \
Crypt::UnixCrypt_XS \
Data::Types \
Digest::BLAKE2 \
Digest::CMAC \
Digest::CRC \
Digest::GOST \
@ -72,6 +71,10 @@ cpan install Authen::Passphrase::LANManager \
ERRORS=$((ERRORS+$?))
cpanm https://github.com/matrix/p5-Digest-BLAKE2.git
ERRORS=$((ERRORS+$?))
pip3 install pygost
ERRORS=$((ERRORS+$?))