Annotation of embedaddon/strongswan/src/libstrongswan/plugins/pubkey/pubkey_cert.h, revision 1.1.1.1

1.1       misho       1: /*
                      2:  * Copyright (C) 2008 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: /**
                     17:  * @defgroup pubkey_cert pubkey_cert
                     18:  * @{ @ingroup certificates
                     19:  */
                     20: 
                     21: #ifndef PUBKEY_CERT_H_
                     22: #define PUBKEY_CERT_H_
                     23: 
                     24: #include <credentials/builder.h>
                     25: #include <credentials/certificates/certificate.h>
                     26: 
                     27: typedef struct pubkey_cert_t pubkey_cert_t;
                     28: 
                     29: /**
                     30:  * A trusted public key wrapped into certificate of type CERT_TRUSTED_PUBKEY.
                     31:  */
                     32: struct pubkey_cert_t {
                     33: 
                     34:        /**
                     35:         * Implements certificate_t.
                     36:         */
                     37:        certificate_t interface;
                     38: 
                     39:        /**
                     40:         * Set the subject of the trusted public key.
                     41:         *
                     42:         * @param subject       subject to be set
                     43:         */
                     44:        void (*set_subject)(pubkey_cert_t *this, identification_t *subject);
                     45: };
                     46: 
                     47: /**
                     48:  * Create a trusted public key cert using a public key.
                     49:  *
                     50:  * The build accepts a BUILD_PUBLIC_KEY or a BUILD_BLOB_ASN1_DER part.
                     51:  *
                     52:  * @param type         type of the certificate, must be CERT_pubkey_cert
                     53:  * @param args         builder_part_t argument list
                     54:  * @return                     pubkey_cert_t, NULL on failure
                     55:  */
                     56: pubkey_cert_t *pubkey_cert_wrap(certificate_type_t type, va_list args);
                     57: 
                     58: #endif /** PUBKEY_CERT_H_ @}*/

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