mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-02-24 18:57:27 -08:00
Not sure what has changed in the Proxmark firmware, but not quite working the same. hf iclass dump, sometimes does not accurately get the CSN and CC used for Authentication. Other times it fails to execute the procedure to dump the card, or a correct MAC is diagnosed as authentication failure. However, if a MAC is corrected calculated, card contents ca be dumped with hf iclass replay <MAC> It could be down to the antenna? as I am Using the RyscCorp HF Antenna. Requires further testing!
9 lines
232 B
C
9 lines
232 B
C
#ifndef IKEYS_H
|
|
#define IKEYS_H
|
|
int testKeyDiversification();
|
|
int doKeyTests();
|
|
void hash0(uint64_t c, uint8_t *k);
|
|
void pushbackSixBitByte(uint64_t *c, uint8_t z, int n);
|
|
uint8_t getSixBitByte(uint64_t c, int n);
|
|
#endif // IKEYS_H
|