2 * Copyright (C) 2008 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 #include "pubkey_plugin.h"
21 #include "pubkey_cert.h"
22 #include "pubkey_public_key.h"
24 typedef struct private_pubkey_plugin_t private_pubkey_plugin_t
;
27 * private data of pubkey_plugin
29 struct private_pubkey_plugin_t
{
34 pubkey_plugin_t
public;
38 * Implementation of pubkey_plugin_t.pubkeytroy
40 static void destroy(private_pubkey_plugin_t
*this)
42 lib
->creds
->remove_builder(lib
->creds
,
43 (builder_constructor_t
)pubkey_cert_builder
);
50 plugin_t
*plugin_create()
52 private_pubkey_plugin_t
*this = malloc_thing(private_pubkey_plugin_t
);
54 this->public.plugin
.destroy
= (void(*)(plugin_t
*))destroy
;
56 lib
->creds
->add_builder(lib
->creds
, CRED_CERTIFICATE
, CERT_TRUSTED_PUBKEY
,
57 (builder_constructor_t
)pubkey_cert_builder
);
58 lib
->creds
->add_builder(lib
->creds
, CRED_PUBLIC_KEY
, KEY_ANY
,
59 (builder_constructor_t
)pubkey_public_key_builder
);
61 return &this->public.plugin
;