]> www.average.org Git - pam_pcsc_cr.git/blob - token.h
openssl: make it use 'shortcut' function HMAC()
[pam_pcsc_cr.git] / token.h
1 /*
2 Copyright (c) 2013 Eugene Crosser
3
4 This software is provided 'as-is', without any express or implied
5 warranty. In no event will the authors be held liable for any damages
6 arising from the use of this software.
7
8 Permission is granted to anyone to use this software for any purpose,
9 including commercial applications, and to alter it and redistribute it
10 freely, subject to the following restrictions:
11
12     1. The origin of this software must not be misrepresented; you must
13     not claim that you wrote the original software. If you use this
14     software in a product, an acknowledgment in the product documentation
15     would be appreciated but is not required.
16
17     2. Altered source versions must be plainly marked as such, and must
18     not be misrepresented as being the original software.
19
20     3. This notice may not be removed or altered from any source
21     distribution.
22 */
23
24 #ifndef _TOKEN_H
25 #define _TOKEN_H
26
27 #include <winscard.h>
28
29 extern SCARD_IO_REQUEST pioSendPci;
30
31 struct token_interface {
32         char *name;
33         int (*parse_option)(char *key, char *val);
34         DWORD (*check_atr_hb)(BYTE *str, DWORD size);
35         DWORD (*prologue)(SCARDHANDLE hCard);
36         DWORD (*getserial)(SCARDHANDLE hCard, BYTE *recv, LPDWORD recvsize_p);
37         DWORD (*trancieve)(SCARDHANDLE hCard,
38                 BYTE *send, DWORD sendsize, BYTE *recv, LPDWORD recvsize_p);
39         DWORD (*epilogue)(SCARDHANDLE hCard);
40 };
41
42 #endif