]> www.average.org Git - pam_pcsc_cr.git/blob - crypto_if.h
use base64 instead of hex
[pam_pcsc_cr.git] / crypto_if.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 _CRYPTO_IF_H
25 #define _CRYPTO_IF_H
26
27 struct crypto_interface {
28         const char *(*init)(void);
29         unsigned long (*encrypt)(const void *key, const int keylen, void *iv,
30                                 const void *pt, void *ct, const int tlen);
31         unsigned long (*decrypt)(const void *key, const int keylen, void *iv,
32                                 const void *ct, void *pt, const int tlen);
33         unsigned long (*hash)(const void *pt, const int tlen,
34                                 void *tag, int *taglen);
35         unsigned long (*hmac)(const void *key, const int keylen,
36                                 const void *pt, const int tlen,
37                                 void *tag, int *taglen);
38         const char *(*errstr)(const unsigned long err);
39 };
40
41 #endif