2016-09-29 18:23:09 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2022-01-07 08:58:03 +08:00
|
|
|
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
2016-09-29 18:23:09 +08:00
|
|
|
//
|
2022-01-07 08:58:03 +08:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// See LICENSE.txt for the text of the license.
|
2016-09-29 18:23:09 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// LEGIC type prototyping
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef _LEGIC_H_
|
|
|
|
#define _LEGIC_H_
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// LEGIC
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
typedef struct {
|
2019-03-10 01:41:30 +08:00
|
|
|
uint8_t uid[4];
|
|
|
|
uint32_t tagtype;
|
|
|
|
uint8_t cmdsize;
|
|
|
|
uint8_t addrsize;
|
|
|
|
uint16_t cardsize;
|
2022-02-14 16:19:35 +08:00
|
|
|
} PACKED legic_card_select_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint16_t offset;
|
|
|
|
uint16_t len;
|
|
|
|
uint8_t iv;
|
|
|
|
uint8_t data[];
|
|
|
|
} PACKED legic_packet_t;
|
2016-09-29 18:23:09 +08:00
|
|
|
|
2022-01-04 05:11:52 +08:00
|
|
|
// iceman: todo : this should be packed
|
|
|
|
|
2016-09-29 18:23:09 +08:00
|
|
|
#endif // _LEGIC_H_
|