2016-09-29 18:23:09 +08:00
|
|
|
|
//-----------------------------------------------------------------------------
|
2010-02-21 08:12:52 +08:00
|
|
|
|
// (c) 2009 Henryk Plötz <henryk@ploetzli.ch>
|
|
|
|
|
//
|
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
|
// the license.
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
// LEGIC RF emulation public interface
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2009-10-12 19:47:39 +08:00
|
|
|
|
|
2010-02-21 05:57:20 +08:00
|
|
|
|
#ifndef __LEGICRF_H
|
|
|
|
|
#define __LEGICRF_H
|
2009-10-12 19:47:39 +08:00
|
|
|
|
|
2016-09-02 22:25:54 +08:00
|
|
|
|
#include "proxmark3.h" //
|
|
|
|
|
#include "apps.h"
|
|
|
|
|
#include "util.h" //
|
|
|
|
|
#include "string.h"
|
|
|
|
|
#include "legic_prng.h" // legic PRNG impl
|
|
|
|
|
#include "crc.h" // legic crc-4
|
2016-09-22 01:03:32 +08:00
|
|
|
|
#include "ticks.h" // timers
|
2016-09-29 18:23:09 +08:00
|
|
|
|
#include "legic.h" // legic_card_select_t struct
|
2016-09-02 22:25:54 +08:00
|
|
|
|
|
2010-05-06 19:24:01 +08:00
|
|
|
|
extern void LegicRfSimulate(int phase, int frame, int reqresp);
|
2016-09-29 23:43:39 +08:00
|
|
|
|
extern int LegicRfReader(uint16_t offset, uint16_t len, uint8_t iv);
|
2016-10-07 01:13:23 +08:00
|
|
|
|
extern void LegicRfWriter(uint16_t offset, uint16_t byte, uint8_t iv, uint8_t *data);
|
2016-09-27 02:01:23 +08:00
|
|
|
|
extern void LegicRfInfo(void);
|
2016-07-29 03:41:44 +08:00
|
|
|
|
|
2016-09-22 01:03:32 +08:00
|
|
|
|
uint32_t get_key_stream(int skip, int count);
|
2016-10-06 03:42:13 +08:00
|
|
|
|
void frame_send_tag(uint16_t response, uint8_t bits);
|
2016-09-22 01:03:32 +08:00
|
|
|
|
void frame_sendAsReader(uint32_t data, uint8_t bits);
|
|
|
|
|
|
2016-09-29 23:43:39 +08:00
|
|
|
|
int legic_read_byte( uint16_t index, uint8_t cmd_sz);
|
2016-10-08 01:11:38 +08:00
|
|
|
|
bool legic_write_byte(uint16_t index, uint8_t byte, uint8_t addr_sz);
|
2016-09-29 23:43:39 +08:00
|
|
|
|
|
2016-09-29 18:23:09 +08:00
|
|
|
|
int legic_select_card(legic_card_select_t *p_card);
|
2016-09-29 23:43:39 +08:00
|
|
|
|
int legic_select_card_iv(legic_card_select_t *p_card, uint8_t iv);
|
2016-10-07 01:13:23 +08:00
|
|
|
|
|
2016-10-10 00:24:51 +08:00
|
|
|
|
void LegicCommonInit(bool clear_mem);
|
|
|
|
|
|
2016-10-07 01:13:23 +08:00
|
|
|
|
// emulator mem
|
|
|
|
|
void LegicEMemSet(uint32_t arg0, uint32_t arg1, uint8_t *data);
|
|
|
|
|
void LegicEMemGet(uint32_t arg0, uint32_t arg1);
|
|
|
|
|
void legic_emlset_mem(uint8_t *data, int offset, int numofbytes);
|
|
|
|
|
void legic_emlget_mem(uint8_t *data, int offset, int numofbytes);
|
|
|
|
|
|
2016-07-29 03:41:44 +08:00
|
|
|
|
void ice_legic_setup();
|
2010-02-21 05:57:20 +08:00
|
|
|
|
|
|
|
|
|
#endif /* __LEGICRF_H */
|