1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 08:08:10 +00:00

Merge pull request #3351 from philsmd/update_install_modules

update tools/install_modules.sh (test deps)
This commit is contained in:
Jens Steube 2022-07-01 23:05:21 +02:00 committed by GitHub
commit 96072dbc61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -70,14 +70,23 @@ ERRORS=$((ERRORS+$?))
pip3 install pygost
ERRORS=$((ERRORS+$?))
# pip3 uninstall -y pycryptoplus pycrypto pycryptodome
pip3 install pycryptoplus
ERRORS=$((ERRORS+$?))
# pip3 uninstall -y pycryptodome # latest versions do not require this work around anymore
pip3 install pycrypto
ERRORS=$((ERRORS+$?))
pip3 install cryptography
ERRORS=$((ERRORS+$?))
php --version > /dev/null 2> /dev/null
if [ "$?" -ne 0 ]