Annotation of embedaddon/strongswan/src/libstrongswan/plugins/pgp/pgp_plugin.c, revision 1.1

1.1     ! misho       1: /*
        !             2:  * Copyright (C) 2009 Martin Willi
        !             3:  * HSR Hochschule fuer Technik Rapperswil
        !             4:  *
        !             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>.
        !             9:  *
        !            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
        !            13:  * for more details.
        !            14:  */
        !            15: 
        !            16: #include "pgp_plugin.h"
        !            17: 
        !            18: #include <library.h>
        !            19: #include "pgp_builder.h"
        !            20: #include "pgp_encoder.h"
        !            21: #include "pgp_cert.h"
        !            22: 
        !            23: typedef struct private_pgp_plugin_t private_pgp_plugin_t;
        !            24: 
        !            25: /**
        !            26:  * private data of pgp_plugin
        !            27:  */
        !            28: struct private_pgp_plugin_t {
        !            29: 
        !            30:        /**
        !            31:         * public functions
        !            32:         */
        !            33:        pgp_plugin_t public;
        !            34: };
        !            35: 
        !            36: METHOD(plugin_t, get_name, char*,
        !            37:        private_pgp_plugin_t *this)
        !            38: {
        !            39:        return "pgp";
        !            40: }
        !            41: 
        !            42: METHOD(plugin_t, get_features, int,
        !            43:        private_pgp_plugin_t *this, plugin_feature_t *features[])
        !            44: {
        !            45:        static plugin_feature_t f[] = {
        !            46:                PLUGIN_REGISTER(PRIVKEY, pgp_private_key_load, FALSE),
        !            47:                        PLUGIN_PROVIDE(PRIVKEY, KEY_ANY),
        !            48:                PLUGIN_REGISTER(PRIVKEY, pgp_private_key_load, FALSE),
        !            49:                        PLUGIN_PROVIDE(PRIVKEY, KEY_RSA),
        !            50: 
        !            51:                PLUGIN_REGISTER(PUBKEY, pgp_public_key_load, FALSE),
        !            52:                        PLUGIN_PROVIDE(PUBKEY, KEY_ANY),
        !            53:                PLUGIN_REGISTER(PUBKEY, pgp_public_key_load, FALSE),
        !            54:                        PLUGIN_PROVIDE(PUBKEY, KEY_RSA),
        !            55: 
        !            56:                PLUGIN_REGISTER(CERT_DECODE, pgp_cert_load, FALSE),
        !            57:                        PLUGIN_PROVIDE(CERT_DECODE, CERT_GPG),
        !            58:        };
        !            59:        *features = f;
        !            60:        return countof(f);
        !            61: }
        !            62: 
        !            63: METHOD(plugin_t, destroy, void,
        !            64:        private_pgp_plugin_t *this)
        !            65: {
        !            66:        lib->encoding->remove_encoder(lib->encoding, pgp_encoder_encode);
        !            67: 
        !            68:        free(this);
        !            69: }
        !            70: 
        !            71: /*
        !            72:  * see header file
        !            73:  */
        !            74: plugin_t *pgp_plugin_create()
        !            75: {
        !            76:        private_pgp_plugin_t *this;
        !            77: 
        !            78:        INIT(this,
        !            79:                .public = {
        !            80:                        .plugin = {
        !            81:                                .get_name = _get_name,
        !            82:                                .get_features = _get_features,
        !            83:                                .destroy = _destroy,
        !            84:                        },
        !            85:                },
        !            86:        );
        !            87: 
        !            88:        lib->encoding->add_encoder(lib->encoding, pgp_encoder_encode);
        !            89: 
        !            90:        return &this->public.plugin;
        !            91: }
        !            92: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>