mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +08:00
10 lines
199 B
C
10 lines
199 B
C
#ifndef __LEGIC_PRNG_H
|
|
#define __LEGIC_PRNG_H
|
|
|
|
#include <stdint.h>
|
|
extern void legic_prng_init(uint8_t init);
|
|
extern void legic_prng_forward(int count);
|
|
extern uint8_t legic_prng_get_bit();
|
|
|
|
#endif
|
|
|