1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-07-19 13:08:19 +00:00

Merge branch 'master' into fix_1800_Apple

This commit is contained in:
Gabriele Gristina 2025-07-12 13:01:38 +02:00 committed by GitHub
commit 7376f36c02
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View File

@ -164,6 +164,7 @@
- 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 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
- 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

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