mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
Merge pull request #2530 from nemanjan00/avx512f
Patch for hardnested attack, for avx512f, by @xianglin1998
This commit is contained in:
commit
495759d6bd
2 changed files with 10 additions and 0 deletions
|
@ -17,6 +17,7 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac
|
||||||
- Changed scripting string params to accept 1024 chars, Thanks @evildaemond! (@iceman1001)
|
- Changed scripting string params to accept 1024 chars, Thanks @evildaemond! (@iceman1001)
|
||||||
- Added detection for FM11NT021 (@iceman1001)
|
- Added detection for FM11NT021 (@iceman1001)
|
||||||
- Added detection of a magic NTAG 215 (@iceman1001)
|
- Added detection of a magic NTAG 215 (@iceman1001)
|
||||||
|
- Fixed hardnested on AVX512F #2410 (@xianglin1998)
|
||||||
|
|
||||||
## [Backdoor.4.18994][2024-09-10]
|
## [Backdoor.4.18994][2024-09-10]
|
||||||
- Changed flashing messages to be less scary (@iceman1001)
|
- Changed flashing messages to be less scary (@iceman1001)
|
||||||
|
|
|
@ -442,9 +442,18 @@ uint64_t CRACK_STATES_BITSLICED(uint32_t cuid, uint8_t *best_first_bytes, statel
|
||||||
#if MAX_BITSLICES > 64
|
#if MAX_BITSLICES > 64
|
||||||
&& results.bytes64[1] == 0
|
&& results.bytes64[1] == 0
|
||||||
#endif
|
#endif
|
||||||
|
#if MAX_BITSLICES > 64
|
||||||
|
&& results.bytes64[1] == 0
|
||||||
|
#endif
|
||||||
#if MAX_BITSLICES > 128
|
#if MAX_BITSLICES > 128
|
||||||
&& results.bytes64[2] == 0
|
&& results.bytes64[2] == 0
|
||||||
&& results.bytes64[3] == 0
|
&& results.bytes64[3] == 0
|
||||||
|
#endif
|
||||||
|
#if MAX_BITSLICES > 256
|
||||||
|
&& results.bytes64[4] == 0
|
||||||
|
&& results.bytes64[5] == 0
|
||||||
|
&& results.bytes64[6] == 0
|
||||||
|
&& results.bytes64[7] == 0
|
||||||
#endif
|
#endif
|
||||||
) {
|
) {
|
||||||
#if defined (DEBUG_BRUTE_FORCE)
|
#if defined (DEBUG_BRUTE_FORCE)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue