mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-09 17:56:53 +08:00
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
|