2 * Copyright (C) 2012 Reto Buerki
3 * Copyright (C) 2012 Adrian-Ken Rueegsegger
4 * Hochschule fuer Technik Rapperswil
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 #ifndef TKM_PRIVATE_KEY_H_
18 #define TKM_PRIVATE_KEY_H_
20 #include <credentials/keys/private_key.h>
22 typedef struct tkm_private_key_t tkm_private_key_t
;
25 * TKM private_key_t implementation.
27 struct tkm_private_key_t
{
30 * Implements private_key_t interface
36 * Initialize TKM private key.
38 tkm_private_key_t
*tkm_private_key_init(void);
40 #endif /** TKM_PRIVATE_KEY_H_ */