1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-22 14:48:12 +00:00

update tools/install_modules.sh (test deps)

This commit is contained in:
philsmd 2022-06-29 18:07:50 +02:00
parent e0fae5c7ab
commit 8d8b6d689f

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 ]