mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-06-08 17:22:08 +00:00
411c684e6a
Implemented key nibble based multithreading support for hf iclass legbrute. It takes the whole iclass keyspace based on the first 4 bits of the key value (from 0x0 to 0xF) and divides it across the number of available threads. E.g. on a 8 threads implementation: - thread 1 will test keys starting with 0x0 onwards - thread 2 will test keys starting with 0x2 onwards - thread 3 will test keys starting with 0x4 onwards - thread 4 will test keys starting with 0x6 onwards - thread 5 will test keys starting with 0x8 onwards - thread 6 will test keys starting with 0xA onwards - thread 7 will test keys starting with 0xC onwards - thread 8 will test keys starting with 0XE onwards