]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/pcsc.h
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2019 piwi
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
7 //-----------------------------------------------------------------------------
8 // PCSC functions to use alternative Smartcard Readers
9 //-----------------------------------------------------------------------------
16 #include "smartcard.h"
18 uint8_t *pcsc_get_trace_addr(void);
19 uint32_t pcsc_get_traceLen(void);
20 char *getAlternativeSmartcardReader(void);
21 bool pcscCheckForCardReaders(void);
22 bool pcscSelectAlternativeCardReader(const char *readername
);
23 bool pcscGetATR(smart_card_atr_t
*card
);
24 void pcscTransmit(uint8_t *data
, uint32_t data_len
, uint32_t flags
, uint8_t *response
, int *response_len
);