mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 13:00:42 -07:00
hf mf hardnested - these are called with u16 in the source
This commit is contained in:
parent
a658d5dd1e
commit
078a28550f
1 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@
|
||||||
typedef struct guess_sum_a8 {
|
typedef struct guess_sum_a8 {
|
||||||
float prob;
|
float prob;
|
||||||
uint64_t num_states;
|
uint64_t num_states;
|
||||||
uint8_t sum_a8_idx;
|
uint16_t sum_a8_idx;
|
||||||
} guess_sum_a8_t;
|
} guess_sum_a8_t;
|
||||||
|
|
||||||
typedef struct noncelistentry {
|
typedef struct noncelistentry {
|
||||||
|
@ -40,7 +40,7 @@ typedef struct noncelist {
|
||||||
guess_sum_a8_t sum_a8_guess[NUM_SUMS];
|
guess_sum_a8_t sum_a8_guess[NUM_SUMS];
|
||||||
bool sum_a8_guess_dirty;
|
bool sum_a8_guess_dirty;
|
||||||
float expected_num_brute_force;
|
float expected_num_brute_force;
|
||||||
uint8_t BitFlips[0x400];
|
uint16_t BitFlips[0x400];
|
||||||
uint32_t *states_bitarray[2];
|
uint32_t *states_bitarray[2];
|
||||||
uint32_t num_states_bitarray[2];
|
uint32_t num_states_bitarray[2];
|
||||||
bool all_bitflips_dirty[2];
|
bool all_bitflips_dirty[2];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue