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