]> git.ipfire.org Git - thirdparty/strongswan.git/blame - src/libstrongswan/plugins/x509/x509_ocsp_request.h
Update copyright headers after acquisition by secunet
[thirdparty/strongswan.git] / src / libstrongswan / plugins / x509 / x509_ocsp_request.h
CommitLineData
552cc11b 1/*
d73f453c 2 * Copyright (C) 2008-2009 Martin Willi
19ef2aec
TB
3 *
4 * Copyright (C) secunet Security Networks AG
552cc11b
MW
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * for more details.
15 */
16
17/**
18 * @defgroup x509_ocsp_request x509_ocsp_request
19 * @{ @ingroup x509_p
20 */
21
22#ifndef X509_OCSP_REQUEST_H_
23#define X509_OCSP_REQUEST_H_
24
d73f453c 25#include <credentials/builder.h>
552cc11b
MW
26#include <credentials/certificates/ocsp_request.h>
27
28typedef struct x509_ocsp_request_t x509_ocsp_request_t;
29
30/**
31 * Implementation of ocsp_request_t using own ASN1 parser.
32 */
33struct x509_ocsp_request_t {
34
35 /**
36 * Implements the ocsp_request_t interface
37 */
38 ocsp_request_t interface;
39};
40
41/**
d73f453c 42 * Generate a X.509 OCSP request.
552cc11b
MW
43 *
44 * The resulting builder accepts:
45 * BUILD_CA_CERT: CA of the checked certificates, exactly one
46 * BUILD_CERT: certificates to check with the request, at least one
47 * BUILD_SUBJECT: subject requesting check, optional
48 * BUILD_SIGNING_CERT: certificate to create requestor signature, optional
49 * BUILD_SIGNING_KEY: private key to create requestor signature, optional
50 *
d73f453c
MW
51 * @param type certificate type, CERT_X509_OCSP_REQUEST only
52 * @param args builder_part_t argument list
53 * @return OCSP request, NULL on failure
552cc11b 54 */
d73f453c 55x509_ocsp_request_t *x509_ocsp_request_gen(certificate_type_t type, va_list args);
552cc11b 56
1490ff4d 57#endif /** X509_OCSP_REQUEST_H_ @}*/