mirror of
https://github.com/hashcat/hashcat
synced 2025-03-19 06:14:22 +01:00
Unit tests: Updated test.sh to set default device-type to CPU with Apple Intel, force pure kernel with Apple Silicon and add -f (--force) option
This commit is contained in:
parent
eef28013ac
commit
1b68d333a8
@ -30,6 +30,7 @@
|
|||||||
- User Options: Add new module function module_hash_decode_postprocess() to override hash specific configurations from command line
|
- User Options: Add new module function module_hash_decode_postprocess() to override hash specific configurations from command line
|
||||||
- OpenCL Runtime: Added support to use Apple Silicon compute devices
|
- OpenCL Runtime: Added support to use Apple Silicon compute devices
|
||||||
- OpenCL Runtime: Set default device-type to GPU with Apple Silicon compute devices
|
- OpenCL Runtime: Set default device-type to GPU with Apple Silicon compute devices
|
||||||
|
- Unit tests: Updated test.sh to set default device-type to CPU with Apple Intel, force pure kernel with Apple Silicon and add -f (--force) option
|
||||||
|
|
||||||
* changes v6.2.4 -> v6.2.5
|
* changes v6.2.4 -> v6.2.5
|
||||||
|
|
||||||
|
@ -7,6 +7,8 @@
|
|||||||
|
|
||||||
OPTS="--quiet --potfile-disable --runtime 400 --hwmon-disable"
|
OPTS="--quiet --potfile-disable --runtime 400 --hwmon-disable"
|
||||||
|
|
||||||
|
FORCE=0
|
||||||
|
|
||||||
TDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
TDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
|
|
||||||
# List of TrueCrypt modes which have test containers
|
# List of TrueCrypt modes which have test containers
|
||||||
@ -3017,7 +3019,7 @@ HT=0
|
|||||||
PACKAGE=0
|
PACKAGE=0
|
||||||
OPTIMIZED=1
|
OPTIMIZED=1
|
||||||
|
|
||||||
while getopts "V:t:m:a:b:hcpd:x:o:d:D:F:POI:s:" opt; do
|
while getopts "V:t:m:a:b:hcpd:x:o:d:D:F:POI:s:f" opt; do
|
||||||
|
|
||||||
case ${opt} in
|
case ${opt} in
|
||||||
"V")
|
"V")
|
||||||
@ -3116,11 +3118,11 @@ while getopts "V:t:m:a:b:hcpd:x:o:d:D:F:POI:s:" opt; do
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
"O")
|
"O")
|
||||||
# optimized is already default, ignore it
|
# optimized is already default, ignore it
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"d")
|
"d")
|
||||||
OPTS="${OPTS} -d ${OPTARG}"
|
OPTS="${OPTS} -d ${OPTARG}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"D")
|
"D")
|
||||||
@ -3137,12 +3139,16 @@ while getopts "V:t:m:a:b:hcpd:x:o:d:D:F:POI:s:" opt; do
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
"F")
|
"F")
|
||||||
OUTD=$( echo "${OPTARG}" | sed 's!/$!!g' )
|
OUTD=$( echo "${OPTARG}" | sed 's!/$!!g' )
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"P")
|
"P")
|
||||||
OPTIMIZED=0
|
OPTIMIZED=0
|
||||||
KERNEL_TYPE="Pure"
|
KERNEL_TYPE="Pure"
|
||||||
|
;;
|
||||||
|
|
||||||
|
"f")
|
||||||
|
FORCE=1
|
||||||
;;
|
;;
|
||||||
|
|
||||||
\?)
|
\?)
|
||||||
@ -3156,6 +3162,24 @@ while getopts "V:t:m:a:b:hcpd:x:o:d:D:F:POI:s:" opt; do
|
|||||||
|
|
||||||
done
|
done
|
||||||
|
|
||||||
|
IS_APPLE_SILICON=0
|
||||||
|
|
||||||
|
# handle Apple M1 bugs with optimized kernels
|
||||||
|
|
||||||
|
if [ ${OPTIMIZED} -eq 1 ]; then
|
||||||
|
BIN_sysctl=$(which sysctl)
|
||||||
|
if [ $? -eq 0 ]; then
|
||||||
|
CPU_TYPE=$(sysctl hw.cputype | awk '{print $2}')
|
||||||
|
|
||||||
|
# with Apple's M1, disable optimized kernel
|
||||||
|
if [ ${CPU_TYPE} -eq 16777228 ]; then
|
||||||
|
OPTIMIZED=0
|
||||||
|
KERNEL_TYPE="Pure"
|
||||||
|
IS_APPLE_SILICON=1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
export IS_OPTIMIZED=${OPTIMIZED}
|
export IS_OPTIMIZED=${OPTIMIZED}
|
||||||
|
|
||||||
if [ "${OPTIMIZED}" -eq 1 ]; then
|
if [ "${OPTIMIZED}" -eq 1 ]; then
|
||||||
@ -3163,8 +3187,17 @@ if [ "${OPTIMIZED}" -eq 1 ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${TYPE}" = "null" ]; then
|
if [ "${TYPE}" = "null" ]; then
|
||||||
OPTS="${OPTS} -D 2"
|
if [ $(uname) == "Darwin" ] && [ ${IS_APPLE_SILICON} -eq 0 ]; then
|
||||||
TYPE="Gpu"
|
OPTS="${OPTS} -D 1"
|
||||||
|
TYPE="Cpu"
|
||||||
|
else
|
||||||
|
OPTS="${OPTS} -D 2"
|
||||||
|
TYPE="Gpu"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ${FORCE} -eq 1 ]; then
|
||||||
|
OPTS="${OPTS} --force"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "${ARCHITECTURE}" ]; then
|
if [ -n "${ARCHITECTURE}" ]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user