]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/ocsp/ocsp_asn.c
Remove /* foo.c */ comments
[thirdparty/openssl.git] / crypto / ocsp / ocsp_asn.c
CommitLineData
0f113f3e
MC
1/*
2 * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
3 * 2000.
36f554d4
DSH
4 */
5/* ====================================================================
6 * Copyright (c) 2000 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
0f113f3e 13 * notice, this list of conditions and the following disclaimer.
36f554d4
DSH
14 *
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 *
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24 *
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * licensing@OpenSSL.org.
29 *
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
33 *
34 * 6. Redistributions of any form whatsoever must retain the following
35 * acknowledgment:
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
52 *
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
56 *
57 */
58#include <openssl/asn1.h>
59#include <openssl/asn1t.h>
60#include <openssl/ocsp.h>
6ef869d7 61#include "ocsp_lcl.h"
36f554d4
DSH
62
63ASN1_SEQUENCE(OCSP_SIGNATURE) = {
a332635e 64 ASN1_EMBED(OCSP_SIGNATURE, signatureAlgorithm, X509_ALGOR),
0f113f3e
MC
65 ASN1_SIMPLE(OCSP_SIGNATURE, signature, ASN1_BIT_STRING),
66 ASN1_EXP_SEQUENCE_OF_OPT(OCSP_SIGNATURE, certs, X509, 0)
d339187b 67} ASN1_SEQUENCE_END(OCSP_SIGNATURE)
36f554d4 68
2c15d426
DSH
69IMPLEMENT_ASN1_FUNCTIONS(OCSP_SIGNATURE)
70
36f554d4 71ASN1_SEQUENCE(OCSP_CERTID) = {
a332635e 72 ASN1_EMBED(OCSP_CERTID, hashAlgorithm, X509_ALGOR),
af170194
DSH
73 ASN1_EMBED(OCSP_CERTID, issuerNameHash, ASN1_OCTET_STRING),
74 ASN1_EMBED(OCSP_CERTID, issuerKeyHash, ASN1_OCTET_STRING),
75 ASN1_EMBED(OCSP_CERTID, serialNumber, ASN1_INTEGER)
d339187b 76} ASN1_SEQUENCE_END(OCSP_CERTID)
36f554d4 77
2c15d426
DSH
78IMPLEMENT_ASN1_FUNCTIONS(OCSP_CERTID)
79
36f554d4 80ASN1_SEQUENCE(OCSP_ONEREQ) = {
0f113f3e
MC
81 ASN1_SIMPLE(OCSP_ONEREQ, reqCert, OCSP_CERTID),
82 ASN1_EXP_SEQUENCE_OF_OPT(OCSP_ONEREQ, singleRequestExtensions, X509_EXTENSION, 0)
d339187b 83} ASN1_SEQUENCE_END(OCSP_ONEREQ)
36f554d4 84
2c15d426
DSH
85IMPLEMENT_ASN1_FUNCTIONS(OCSP_ONEREQ)
86
36f554d4 87ASN1_SEQUENCE(OCSP_REQINFO) = {
0f113f3e
MC
88 ASN1_EXP_OPT(OCSP_REQINFO, version, ASN1_INTEGER, 0),
89 ASN1_EXP_OPT(OCSP_REQINFO, requestorName, GENERAL_NAME, 1),
90 ASN1_SEQUENCE_OF(OCSP_REQINFO, requestList, OCSP_ONEREQ),
91 ASN1_EXP_SEQUENCE_OF_OPT(OCSP_REQINFO, requestExtensions, X509_EXTENSION, 2)
d339187b 92} ASN1_SEQUENCE_END(OCSP_REQINFO)
36f554d4 93
2c15d426
DSH
94IMPLEMENT_ASN1_FUNCTIONS(OCSP_REQINFO)
95
36f554d4 96ASN1_SEQUENCE(OCSP_REQUEST) = {
a332635e 97 ASN1_EMBED(OCSP_REQUEST, tbsRequest, OCSP_REQINFO),
0f113f3e 98 ASN1_EXP_OPT(OCSP_REQUEST, optionalSignature, OCSP_SIGNATURE, 0)
d339187b 99} ASN1_SEQUENCE_END(OCSP_REQUEST)
36f554d4 100
2c15d426 101IMPLEMENT_ASN1_FUNCTIONS(OCSP_REQUEST)
36f554d4
DSH
102
103/* OCSP_RESPONSE templates */
104
105ASN1_SEQUENCE(OCSP_RESPBYTES) = {
0f113f3e
MC
106 ASN1_SIMPLE(OCSP_RESPBYTES, responseType, ASN1_OBJECT),
107 ASN1_SIMPLE(OCSP_RESPBYTES, response, ASN1_OCTET_STRING)
d339187b 108} ASN1_SEQUENCE_END(OCSP_RESPBYTES)
36f554d4 109
2c15d426
DSH
110IMPLEMENT_ASN1_FUNCTIONS(OCSP_RESPBYTES)
111
36f554d4 112ASN1_SEQUENCE(OCSP_RESPONSE) = {
0f113f3e
MC
113 ASN1_SIMPLE(OCSP_RESPONSE, responseStatus, ASN1_ENUMERATED),
114 ASN1_EXP_OPT(OCSP_RESPONSE, responseBytes, OCSP_RESPBYTES, 0)
d339187b 115} ASN1_SEQUENCE_END(OCSP_RESPONSE)
36f554d4 116
2c15d426
DSH
117IMPLEMENT_ASN1_FUNCTIONS(OCSP_RESPONSE)
118
36f554d4 119ASN1_CHOICE(OCSP_RESPID) = {
0f113f3e
MC
120 ASN1_EXP(OCSP_RESPID, value.byName, X509_NAME, 1),
121 ASN1_EXP(OCSP_RESPID, value.byKey, ASN1_OCTET_STRING, 2)
d339187b 122} ASN1_CHOICE_END(OCSP_RESPID)
36f554d4 123
3c07b4c2
DSH
124IMPLEMENT_ASN1_FUNCTIONS(OCSP_RESPID)
125
36f554d4 126ASN1_SEQUENCE(OCSP_REVOKEDINFO) = {
0f113f3e
MC
127 ASN1_SIMPLE(OCSP_REVOKEDINFO, revocationTime, ASN1_GENERALIZEDTIME),
128 ASN1_EXP_OPT(OCSP_REVOKEDINFO, revocationReason, ASN1_ENUMERATED, 0)
d339187b 129} ASN1_SEQUENCE_END(OCSP_REVOKEDINFO)
36f554d4 130
2c15d426
DSH
131IMPLEMENT_ASN1_FUNCTIONS(OCSP_REVOKEDINFO)
132
36f554d4 133ASN1_CHOICE(OCSP_CERTSTATUS) = {
0f113f3e
MC
134 ASN1_IMP(OCSP_CERTSTATUS, value.good, ASN1_NULL, 0),
135 ASN1_IMP(OCSP_CERTSTATUS, value.revoked, OCSP_REVOKEDINFO, 1),
136 ASN1_IMP(OCSP_CERTSTATUS, value.unknown, ASN1_NULL, 2)
d339187b 137} ASN1_CHOICE_END(OCSP_CERTSTATUS)
36f554d4 138
2c15d426
DSH
139IMPLEMENT_ASN1_FUNCTIONS(OCSP_CERTSTATUS)
140
36f554d4 141ASN1_SEQUENCE(OCSP_SINGLERESP) = {
0f113f3e
MC
142 ASN1_SIMPLE(OCSP_SINGLERESP, certId, OCSP_CERTID),
143 ASN1_SIMPLE(OCSP_SINGLERESP, certStatus, OCSP_CERTSTATUS),
144 ASN1_SIMPLE(OCSP_SINGLERESP, thisUpdate, ASN1_GENERALIZEDTIME),
145 ASN1_EXP_OPT(OCSP_SINGLERESP, nextUpdate, ASN1_GENERALIZEDTIME, 0),
146 ASN1_EXP_SEQUENCE_OF_OPT(OCSP_SINGLERESP, singleExtensions, X509_EXTENSION, 1)
d339187b 147} ASN1_SEQUENCE_END(OCSP_SINGLERESP)
36f554d4 148
2c15d426
DSH
149IMPLEMENT_ASN1_FUNCTIONS(OCSP_SINGLERESP)
150
36f554d4 151ASN1_SEQUENCE(OCSP_RESPDATA) = {
0f113f3e 152 ASN1_EXP_OPT(OCSP_RESPDATA, version, ASN1_INTEGER, 0),
a332635e 153 ASN1_EMBED(OCSP_RESPDATA, responderId, OCSP_RESPID),
0f113f3e
MC
154 ASN1_SIMPLE(OCSP_RESPDATA, producedAt, ASN1_GENERALIZEDTIME),
155 ASN1_SEQUENCE_OF(OCSP_RESPDATA, responses, OCSP_SINGLERESP),
156 ASN1_EXP_SEQUENCE_OF_OPT(OCSP_RESPDATA, responseExtensions, X509_EXTENSION, 1)
d339187b 157} ASN1_SEQUENCE_END(OCSP_RESPDATA)
36f554d4 158
2c15d426
DSH
159IMPLEMENT_ASN1_FUNCTIONS(OCSP_RESPDATA)
160
36f554d4 161ASN1_SEQUENCE(OCSP_BASICRESP) = {
a332635e
DSH
162 ASN1_EMBED(OCSP_BASICRESP, tbsResponseData, OCSP_RESPDATA),
163 ASN1_EMBED(OCSP_BASICRESP, signatureAlgorithm, X509_ALGOR),
0f113f3e
MC
164 ASN1_SIMPLE(OCSP_BASICRESP, signature, ASN1_BIT_STRING),
165 ASN1_EXP_SEQUENCE_OF_OPT(OCSP_BASICRESP, certs, X509, 0)
d339187b 166} ASN1_SEQUENCE_END(OCSP_BASICRESP)
36f554d4 167
2c15d426
DSH
168IMPLEMENT_ASN1_FUNCTIONS(OCSP_BASICRESP)
169
170ASN1_SEQUENCE(OCSP_CRLID) = {
0f113f3e
MC
171 ASN1_EXP_OPT(OCSP_CRLID, crlUrl, ASN1_IA5STRING, 0),
172 ASN1_EXP_OPT(OCSP_CRLID, crlNum, ASN1_INTEGER, 1),
173 ASN1_EXP_OPT(OCSP_CRLID, crlTime, ASN1_GENERALIZEDTIME, 2)
d339187b 174} ASN1_SEQUENCE_END(OCSP_CRLID)
2c15d426
DSH
175
176IMPLEMENT_ASN1_FUNCTIONS(OCSP_CRLID)
177
178ASN1_SEQUENCE(OCSP_SERVICELOC) = {
0f113f3e
MC
179 ASN1_SIMPLE(OCSP_SERVICELOC, issuer, X509_NAME),
180 ASN1_SEQUENCE_OF_OPT(OCSP_SERVICELOC, locator, ACCESS_DESCRIPTION)
d339187b 181} ASN1_SEQUENCE_END(OCSP_SERVICELOC)
2c15d426
DSH
182
183IMPLEMENT_ASN1_FUNCTIONS(OCSP_SERVICELOC)