2 * Copyright (C) 2007-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 * @{ @ingroup certificates
24 #include <utils/enumerator.h>
25 #include <credentials/certificates/certificate.h>
27 typedef struct x509_t x509_t
;
28 typedef enum x509_flag_t x509_flag_t
;
31 * X.509 certificate flags.
34 /** cert has CA constraint */
36 /** cert has AA constraint */
38 /** cert has OCSP signer constraint */
39 X509_OCSP_SIGNER
= (1<<2),
40 /** cert is self-signed */
41 X509_SELF_SIGNED
= (1<<3),
45 * enum names for x509 flags
47 extern enum_name_t
*x509_flag_names
;
50 * X.509 certificate interface.
52 * This interface adds additional methods to the certificate_t type to
53 * allow further operations on these certificates.
58 * Implements certificate_t.
60 certificate_t interface
;
63 * Get the flags set for this certificate.
65 * @return set of flags
67 x509_flag_t (*get_flags
)(x509_t
*this);
70 * Get the certificate serial number.
72 * @return chunk pointing to internal serial number
74 chunk_t (*get_serial
)(x509_t
*this);
77 * Get the the authorityKeyIdentifier.
79 * @return authKeyIdentifier as chunk_t, internal data
81 chunk_t (*get_authKeyIdentifier
)(x509_t
*this);
84 * Create an enumerator over all subjectAltNames.
86 * @return enumerator over subjectAltNames as identification_t*
88 enumerator_t
* (*create_subjectAltName_enumerator
)(x509_t
*this);
91 * Create an enumerator over all CRL URIs.
93 * @return enumerator over URIs as char*
95 enumerator_t
* (*create_crl_uri_enumerator
)(x509_t
*this);
98 * Create an enumerator over all OCSP URIs.
100 * @return enumerator over URIs as char*
102 enumerator_t
* (*create_ocsp_uri_enumerator
)(x509_t
*this);
105 #endif /** X509_H_ @}*/