Implemented a credential set on top of a PKCS#11 token

This commit is contained in:
Martin Willi
2010-08-04 09:26:20 +02:00
parent 50a9e84540
commit a6d2ec331b
5 changed files with 420 additions and 1 deletions
@@ -0,0 +1,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_ @}*/