Added features support to pgp plugin
This commit is contained in:
@@ -39,17 +39,30 @@ METHOD(plugin_t, get_name, char*,
|
|||||||
return "pgp";
|
return "pgp";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
METHOD(plugin_t, get_features, int,
|
||||||
|
private_pgp_plugin_t *this, plugin_feature_t *features[])
|
||||||
|
{
|
||||||
|
static plugin_feature_t f[] = {
|
||||||
|
PLUGIN_REGISTER(PRIVKEY, pgp_private_key_load, FALSE),
|
||||||
|
PLUGIN_PROVIDE(PRIVKEY, KEY_ANY),
|
||||||
|
PLUGIN_REGISTER(PRIVKEY, pgp_private_key_load, FALSE),
|
||||||
|
PLUGIN_PROVIDE(PRIVKEY, KEY_RSA),
|
||||||
|
|
||||||
|
PLUGIN_REGISTER(PUBKEY, pgp_public_key_load, FALSE),
|
||||||
|
PLUGIN_PROVIDE(PUBKEY, KEY_ANY),
|
||||||
|
PLUGIN_REGISTER(PUBKEY, pgp_public_key_load, FALSE),
|
||||||
|
PLUGIN_PROVIDE(PUBKEY, KEY_RSA),
|
||||||
|
|
||||||
|
PLUGIN_REGISTER(CERT_DECODE, pgp_cert_load, FALSE),
|
||||||
|
PLUGIN_PROVIDE(CERT_DECODE, CERT_GPG),
|
||||||
|
};
|
||||||
|
*features = f;
|
||||||
|
return countof(f);
|
||||||
|
}
|
||||||
|
|
||||||
METHOD(plugin_t, destroy, void,
|
METHOD(plugin_t, destroy, void,
|
||||||
private_pgp_plugin_t *this)
|
private_pgp_plugin_t *this)
|
||||||
{
|
{
|
||||||
lib->creds->remove_builder(lib->creds,
|
|
||||||
(builder_function_t)pgp_public_key_load);
|
|
||||||
lib->creds->remove_builder(lib->creds,
|
|
||||||
(builder_function_t)pgp_private_key_load);
|
|
||||||
|
|
||||||
lib->creds->remove_builder(lib->creds,
|
|
||||||
(builder_function_t)pgp_cert_load);
|
|
||||||
|
|
||||||
lib->encoding->remove_encoder(lib->encoding, pgp_encoder_encode);
|
lib->encoding->remove_encoder(lib->encoding, pgp_encoder_encode);
|
||||||
|
|
||||||
free(this);
|
free(this);
|
||||||
@@ -66,21 +79,12 @@ plugin_t *pgp_plugin_create()
|
|||||||
.public = {
|
.public = {
|
||||||
.plugin = {
|
.plugin = {
|
||||||
.get_name = _get_name,
|
.get_name = _get_name,
|
||||||
.reload = (void*)return_false,
|
.get_features = _get_features,
|
||||||
.destroy = _destroy,
|
.destroy = _destroy,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
lib->creds->add_builder(lib->creds, CRED_PUBLIC_KEY, KEY_ANY, FALSE,
|
|
||||||
(builder_function_t)pgp_public_key_load);
|
|
||||||
lib->creds->add_builder(lib->creds, CRED_PUBLIC_KEY, KEY_RSA, FALSE,
|
|
||||||
(builder_function_t)pgp_public_key_load);
|
|
||||||
lib->creds->add_builder(lib->creds, CRED_PRIVATE_KEY, KEY_ANY, FALSE,
|
|
||||||
(builder_function_t)pgp_private_key_load);
|
|
||||||
lib->creds->add_builder(lib->creds, CRED_PRIVATE_KEY, KEY_RSA, FALSE,
|
|
||||||
(builder_function_t)pgp_private_key_load);
|
|
||||||
lib->creds->add_builder(lib->creds, CRED_CERTIFICATE, CERT_GPG, FALSE,
|
|
||||||
(builder_function_t)pgp_cert_load);
|
|
||||||
lib->encoding->add_encoder(lib->encoding, pgp_encoder_encode);
|
lib->encoding->add_encoder(lib->encoding, pgp_encoder_encode);
|
||||||
|
|
||||||
return &this->public.plugin;
|
return &this->public.plugin;
|
||||||
|
|||||||
Reference in New Issue
Block a user