]> www.average.org Git - pam_pcsc_cr.git/blob - pcsc_cr.h
2da8292d754bca5f55f0055503382a377dd0238c
[pam_pcsc_cr.git] / pcsc_cr.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 _PCSC_CR_H
25 #define _PCSC_CR_H
26
27 int pcsc_option(const char *option);
28 long pcsc_cr(const unsigned char *chal, const int csize,
29                 unsigned char *resp, int *rsize);
30 char *pcsc_errstr(long err);
31
32 #endif