2 * Copyright (C) 2002 Ueli Galizzi, Ariane Seiler
3 * Copyright (C) 2003 Martin Berner, Lukas Suter
4 * Copyright (C) 2002-2008 Andreas Steffen
6 * Hochschule fuer Technik Rapperswil
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 * @defgroup x509_ac x509_ac
29 #include <credentials/certificates/ac.h>
31 typedef struct x509_ac_t x509_ac_t
;
34 * Implementation of ocsp_request_t using own ASN1 parser.
39 * Implements the ac_t interface
45 * Create the building facility for X.509 attribute certificates.
47 * The resulting builder accepts:
48 * BUILD_USER_CERT: user certificate, exactly one
49 * BUILD_SIGNER_CERT: signer certificate, exactly one
50 * BUILD_SIGNER_KEY: signer private key, exactly one
51 * BUILD_SERIAL: serial number, exactly one
52 * BUILD_GROUP_ATTR: group attribute, optional, several possible
54 * @param type certificate type, CERT_X509_AC only
55 * @return builder instance to build X.509 attribute certificates
57 builder_t
*x509_ac_builder(certificate_type_t type
);
59 #endif /* X509_AC_H_ @}*/