1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 16:18:09 +00:00

Merge pull request #2480 from philsmd/macos_alias_detection

fixes #2460: better alias detection esp. for macOS
This commit is contained in:
Jens Steube 2020-07-03 13:17:04 +02:00 committed by GitHub
commit b35a7fc72e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -11,6 +11,7 @@
## Bugs ## Bugs
## ##
- Fixed alias detection with additional processor core count check
- Fixed maximum password length in modules of hash-modes 600, 7800, 7801 and 9900 - Fixed maximum password length in modules of hash-modes 600, 7800, 7801 and 9900
- Fixed non-zero status code when using --stdout - Fixed non-zero status code when using --stdout
- Fixed uninitialized value in bitsliced DES kernel (BF mode only) leading to false negatives - Fixed uninitialized value in bitsliced DES kernel (BF mode only) leading to false negatives

View File

@ -47,6 +47,10 @@ static bool is_same_device (const hc_device_param_t *src, const hc_device_param_
if (src->opencl_device_type != dst->opencl_device_type) return false; if (src->opencl_device_type != dst->opencl_device_type) return false;
// macOS still can't distinguish the devices by PCIe bus:
if (src->device_processors != dst->device_processors) return false;
return true; return true;
} }