]> git.zerfleddert.de Git - proxmark3-svn/blob - include/smartcard.h
fix LED signalling in hf 15 snoop and hf 14a snoop (#797)
[proxmark3-svn] / include / smartcard.h
1 //-----------------------------------------------------------------------------
2 // (c) 2018 Iceman, adapted by Marshmellow
3 //
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
6 // the license.
7 //-----------------------------------------------------------------------------
8 // smart card type prototyping
9 //-----------------------------------------------------------------------------
10 #ifndef __SMARTCARD_H
11 #define __SMARTCARD_H
12
13 #include <stdint.h>
14
15 //-----------------------------------------------------------------------------
16 // ISO 7618 Smart Card
17 //-----------------------------------------------------------------------------
18 typedef struct {
19 uint8_t atr_len;
20 uint8_t atr[34];
21 } __attribute__((__packed__)) smart_card_atr_t;
22
23 typedef enum SMARTCARD_COMMAND {
24 SC_CONNECT = (1 << 0),
25 SC_NO_DISCONNECT = (1 << 1),
26 SC_RAW = (1 << 2),
27 SC_SELECT = (1 << 3),
28 SC_RAW_T0 = (1 << 4)
29 } smartcard_command_t;
30
31
32 #endif
Impressum, Datenschutz