mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
fix const params, lessen variable scope and fixing func arguments names
This commit is contained in:
parent
0963f51318
commit
3430e20459
3 changed files with 129 additions and 75 deletions
|
@ -87,8 +87,8 @@ int _bf_generate_mode_range(generator_context_t *ctx);
|
|||
int _bf_generate_mode_charset(generator_context_t *ctx);
|
||||
int _bf_generate_mode_smart(generator_context_t *ctx);
|
||||
int bf_array_increment(uint8_t *data, uint8_t data_len, uint8_t modulo);
|
||||
uint32_t bf_get_key32(generator_context_t *ctx);
|
||||
uint64_t bf_get_key48(generator_context_t *ctx);
|
||||
uint32_t bf_get_key32(const generator_context_t *ctx);
|
||||
uint64_t bf_get_key48(const generator_context_t *ctx);
|
||||
|
||||
// smart mode
|
||||
typedef int (smart_generator_t)(generator_context_t *ctx);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue