blob: c40a8dea6b9eabcf25c556b667c4397538e9b16e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/*
* Copyright (C) 2010 Martin Willi
* Copyright (C) 2010 revosec AG
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
/**
* @defgroup pkcs11_creds pkcs11_creds
* @{ @ingroup pkcs11
*/
#ifndef PKCS11_CREDS_H_
#define PKCS11_CREDS_H_
typedef struct pkcs11_creds_t pkcs11_creds_t;
#include "pkcs11_library.h"
#include <credentials/credential_manager.h>
/**
* Credential set on top on a PKCS#11 token.
*/
struct pkcs11_creds_t {
/**
* Implements credential_set_t.
*/
credential_set_t set;
/**
* Get the PKCS#11 library this set uses.
*
* @return library
*/
pkcs11_library_t* (*get_library)(pkcs11_creds_t *this);
/**
* Get the slot of the token this set uses.
*
* @return slot
*/
CK_SLOT_ID (*get_slot)(pkcs11_creds_t *this);
/**
* Destroy a pkcs11_creds_t.
*/
void (*destroy)(pkcs11_creds_t *this);
};
/**
* Create a pkcs11_creds instance.
*
* @param p11 loaded PKCS#11 library
* @param slot slot of the token we hand out credentials
*/
pkcs11_creds_t *pkcs11_creds_create(pkcs11_library_t *p11, CK_SLOT_ID slot);
#endif /** PKCS11_CREDS_H_ @}*/
|