/src/openssl30/crypto/cms/cms_asn1.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright 2008-2020 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * |
4 | | * Licensed under the Apache License 2.0 (the "License"). You may not use |
5 | | * this file except in compliance with the License. You can obtain a copy |
6 | | * in the file LICENSE in the source distribution or at |
7 | | * https://www.openssl.org/source/license.html |
8 | | */ |
9 | | |
10 | | #include <openssl/asn1t.h> |
11 | | #include <openssl/pem.h> |
12 | | #include <openssl/x509v3.h> |
13 | | #include <openssl/cms.h> |
14 | | #include "cms_local.h" |
15 | | |
16 | | ASN1_SEQUENCE(CMS_IssuerAndSerialNumber) = { |
17 | | ASN1_SIMPLE(CMS_IssuerAndSerialNumber, issuer, X509_NAME), |
18 | | ASN1_SIMPLE(CMS_IssuerAndSerialNumber, serialNumber, ASN1_INTEGER) |
19 | 158k | } ASN1_SEQUENCE_END(CMS_IssuerAndSerialNumber) |
20 | 158k | |
21 | 158k | ASN1_SEQUENCE(CMS_OtherCertificateFormat) = { |
22 | 158k | ASN1_SIMPLE(CMS_OtherCertificateFormat, otherCertFormat, ASN1_OBJECT), |
23 | 158k | ASN1_OPT(CMS_OtherCertificateFormat, otherCert, ASN1_ANY) |
24 | 158k | } static_ASN1_SEQUENCE_END(CMS_OtherCertificateFormat) |
25 | 95.2k | |
26 | 95.2k | ASN1_CHOICE(CMS_CertificateChoices) |
27 | 11.5M | = { ASN1_SIMPLE(CMS_CertificateChoices, d.certificate, X509), ASN1_IMP(CMS_CertificateChoices, d.extendedCertificate, ASN1_SEQUENCE, 0), ASN1_IMP(CMS_CertificateChoices, d.v1AttrCert, ASN1_SEQUENCE, 1), ASN1_IMP(CMS_CertificateChoices, d.v2AttrCert, ASN1_SEQUENCE, 2), ASN1_IMP(CMS_CertificateChoices, d.other, CMS_OtherCertificateFormat, 3) } ASN1_CHOICE_END(CMS_CertificateChoices) |
28 | 11.5M | |
29 | 11.5M | ASN1_CHOICE(CMS_SignerIdentifier) = { |
30 | 11.5M | ASN1_SIMPLE(CMS_SignerIdentifier, d.issuerAndSerialNumber, CMS_IssuerAndSerialNumber), |
31 | 11.5M | ASN1_IMP(CMS_SignerIdentifier, d.subjectKeyIdentifier, ASN1_OCTET_STRING, 0) |
32 | 11.5M | } static_ASN1_CHOICE_END(CMS_SignerIdentifier) |
33 | 483k | |
34 | 483k | ASN1_NDEF_SEQUENCE(CMS_EncapsulatedContentInfo) |
35 | 483k | = { ASN1_SIMPLE(CMS_EncapsulatedContentInfo, eContentType, ASN1_OBJECT), ASN1_NDEF_EXP_OPT(CMS_EncapsulatedContentInfo, eContent, ASN1_OCTET_STRING_NDEF, 0) } static_ASN1_NDEF_SEQUENCE_END(CMS_EncapsulatedContentInfo) |
36 | | |
37 | | /* Minor tweak to operation: free up signer key, cert */ |
38 | | static int cms_si_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, void *exarg) |
39 | 221k | { |
40 | 221k | if (operation == ASN1_OP_FREE_POST) { |
41 | 25.0k | CMS_SignerInfo *si = (CMS_SignerInfo *)*pval; |
42 | 25.0k | EVP_PKEY_free(si->pkey); |
43 | 25.0k | X509_free(si->signer); |
44 | 25.0k | EVP_MD_CTX_free(si->mctx); |
45 | 25.0k | EVP_PKEY_CTX_free(si->pctx); |
46 | 25.0k | } |
47 | 221k | return 1; |
48 | 221k | } |
49 | | |
50 | | ASN1_SEQUENCE_cb(CMS_SignerInfo, cms_si_cb) = { |
51 | | ASN1_EMBED(CMS_SignerInfo, version, INT32), |
52 | | ASN1_SIMPLE(CMS_SignerInfo, sid, CMS_SignerIdentifier), |
53 | | ASN1_SIMPLE(CMS_SignerInfo, digestAlgorithm, X509_ALGOR), |
54 | | ASN1_IMP_SET_OF_OPT(CMS_SignerInfo, signedAttrs, X509_ATTRIBUTE, 0), |
55 | | ASN1_SIMPLE(CMS_SignerInfo, signatureAlgorithm, X509_ALGOR), |
56 | | ASN1_SIMPLE(CMS_SignerInfo, signature, ASN1_OCTET_STRING), |
57 | | ASN1_IMP_SET_OF_OPT(CMS_SignerInfo, unsignedAttrs, X509_ATTRIBUTE, 1) |
58 | | } ASN1_SEQUENCE_END_cb(CMS_SignerInfo, CMS_SignerInfo) |
59 | | |
60 | | ASN1_SEQUENCE(CMS_OtherRevocationInfoFormat) = { |
61 | | ASN1_SIMPLE(CMS_OtherRevocationInfoFormat, otherRevInfoFormat, ASN1_OBJECT), |
62 | | ASN1_OPT(CMS_OtherRevocationInfoFormat, otherRevInfo, ASN1_ANY) |
63 | 7.00k | } static_ASN1_SEQUENCE_END(CMS_OtherRevocationInfoFormat) |
64 | 7.00k | |
65 | 7.00k | ASN1_CHOICE(CMS_RevocationInfoChoice) |
66 | 651k | = { ASN1_SIMPLE(CMS_RevocationInfoChoice, d.crl, X509_CRL), ASN1_IMP(CMS_RevocationInfoChoice, d.other, CMS_OtherRevocationInfoFormat, 1) } ASN1_CHOICE_END(CMS_RevocationInfoChoice) |
67 | 651k | |
68 | 651k | ASN1_NDEF_SEQUENCE(CMS_SignedData) = { |
69 | 651k | ASN1_EMBED(CMS_SignedData, version, INT32), |
70 | 651k | ASN1_SET_OF(CMS_SignedData, digestAlgorithms, X509_ALGOR), |
71 | 651k | ASN1_SIMPLE(CMS_SignedData, encapContentInfo, CMS_EncapsulatedContentInfo), |
72 | 651k | ASN1_IMP_SET_OF_OPT(CMS_SignedData, certificates, CMS_CertificateChoices, 0), |
73 | 651k | ASN1_IMP_SET_OF_OPT(CMS_SignedData, crls, CMS_RevocationInfoChoice, 1), |
74 | 651k | ASN1_SET_OF(CMS_SignedData, signerInfos, CMS_SignerInfo) |
75 | 651k | } ASN1_NDEF_SEQUENCE_END(CMS_SignedData) |
76 | | |
77 | | ASN1_SEQUENCE(CMS_OriginatorInfo) = { |
78 | | ASN1_IMP_SET_OF_OPT(CMS_OriginatorInfo, certificates, CMS_CertificateChoices, 0), |
79 | | ASN1_IMP_SET_OF_OPT(CMS_OriginatorInfo, crls, CMS_RevocationInfoChoice, 1) |
80 | 171k | } static_ASN1_SEQUENCE_END(CMS_OriginatorInfo) |
81 | 171k | |
82 | 171k | static int cms_ec_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, void *exarg) |
83 | 171k | { |
84 | 59.3k | CMS_EncryptedContentInfo *ec = (CMS_EncryptedContentInfo *)*pval; |
85 | | |
86 | 59.3k | if (operation == ASN1_OP_FREE_POST) |
87 | 8.73k | OPENSSL_clear_free(ec->key, ec->keylen); |
88 | 59.3k | return 1; |
89 | 59.3k | } |
90 | | |
91 | | ASN1_NDEF_SEQUENCE_cb(CMS_EncryptedContentInfo, cms_ec_cb) = { |
92 | | ASN1_SIMPLE(CMS_EncryptedContentInfo, contentType, ASN1_OBJECT), |
93 | | ASN1_SIMPLE(CMS_EncryptedContentInfo, contentEncryptionAlgorithm, X509_ALGOR), |
94 | | ASN1_IMP_OPT(CMS_EncryptedContentInfo, encryptedContent, ASN1_OCTET_STRING_NDEF, 0) |
95 | | } ASN1_NDEF_SEQUENCE_END_cb(CMS_EncryptedContentInfo, CMS_EncryptedContentInfo) |
96 | | |
97 | | ASN1_SEQUENCE(CMS_KeyTransRecipientInfo) = { |
98 | | ASN1_EMBED(CMS_KeyTransRecipientInfo, version, INT32), |
99 | | ASN1_SIMPLE(CMS_KeyTransRecipientInfo, rid, CMS_SignerIdentifier), |
100 | | ASN1_SIMPLE(CMS_KeyTransRecipientInfo, keyEncryptionAlgorithm, X509_ALGOR), |
101 | | ASN1_SIMPLE(CMS_KeyTransRecipientInfo, encryptedKey, ASN1_OCTET_STRING) |
102 | 157k | } ASN1_SEQUENCE_END(CMS_KeyTransRecipientInfo) |
103 | 157k | |
104 | 157k | ASN1_SEQUENCE(CMS_OtherKeyAttribute) = { |
105 | 157k | ASN1_SIMPLE(CMS_OtherKeyAttribute, keyAttrId, ASN1_OBJECT), |
106 | 157k | ASN1_OPT(CMS_OtherKeyAttribute, keyAttr, ASN1_ANY) |
107 | 157k | } ASN1_SEQUENCE_END(CMS_OtherKeyAttribute) |
108 | 106k | |
109 | 106k | ASN1_SEQUENCE(CMS_RecipientKeyIdentifier) = { |
110 | 106k | ASN1_SIMPLE(CMS_RecipientKeyIdentifier, subjectKeyIdentifier, ASN1_OCTET_STRING), |
111 | 106k | ASN1_OPT(CMS_RecipientKeyIdentifier, date, ASN1_GENERALIZEDTIME), |
112 | 106k | ASN1_OPT(CMS_RecipientKeyIdentifier, other, CMS_OtherKeyAttribute) |
113 | 106k | } ASN1_SEQUENCE_END(CMS_RecipientKeyIdentifier) |
114 | 47.8k | |
115 | 47.8k | ASN1_CHOICE(CMS_KeyAgreeRecipientIdentifier) = { |
116 | 47.8k | ASN1_SIMPLE(CMS_KeyAgreeRecipientIdentifier, d.issuerAndSerialNumber, CMS_IssuerAndSerialNumber), |
117 | 47.8k | ASN1_IMP(CMS_KeyAgreeRecipientIdentifier, d.rKeyId, CMS_RecipientKeyIdentifier, 0) |
118 | 143k | } static_ASN1_CHOICE_END(CMS_KeyAgreeRecipientIdentifier) |
119 | 143k | |
120 | 143k | static int cms_rek_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, void *exarg) |
121 | 143k | { |
122 | 111k | CMS_RecipientEncryptedKey *rek = (CMS_RecipientEncryptedKey *)*pval; |
123 | 111k | if (operation == ASN1_OP_FREE_POST) { |
124 | 13.4k | EVP_PKEY_free(rek->pkey); |
125 | 13.4k | } |
126 | 111k | return 1; |
127 | 111k | } |
128 | | |
129 | | ASN1_SEQUENCE_cb(CMS_RecipientEncryptedKey, cms_rek_cb) = { |
130 | | ASN1_SIMPLE(CMS_RecipientEncryptedKey, rid, CMS_KeyAgreeRecipientIdentifier), |
131 | | ASN1_SIMPLE(CMS_RecipientEncryptedKey, encryptedKey, ASN1_OCTET_STRING) |
132 | | } ASN1_SEQUENCE_END_cb(CMS_RecipientEncryptedKey, CMS_RecipientEncryptedKey) |
133 | | |
134 | | ASN1_SEQUENCE(CMS_OriginatorPublicKey) = { |
135 | | ASN1_SIMPLE(CMS_OriginatorPublicKey, algorithm, X509_ALGOR), |
136 | | ASN1_SIMPLE(CMS_OriginatorPublicKey, publicKey, ASN1_BIT_STRING) |
137 | 63 | } ASN1_SEQUENCE_END(CMS_OriginatorPublicKey) |
138 | 63 | |
139 | 63 | ASN1_CHOICE(CMS_OriginatorIdentifierOrKey) = { |
140 | 63 | ASN1_SIMPLE(CMS_OriginatorIdentifierOrKey, d.issuerAndSerialNumber, CMS_IssuerAndSerialNumber), |
141 | 63 | ASN1_IMP(CMS_OriginatorIdentifierOrKey, d.subjectKeyIdentifier, ASN1_OCTET_STRING, 0), |
142 | 63 | ASN1_IMP(CMS_OriginatorIdentifierOrKey, d.originatorKey, CMS_OriginatorPublicKey, 1) |
143 | 310k | } static_ASN1_CHOICE_END(CMS_OriginatorIdentifierOrKey) |
144 | 310k | |
145 | 310k | static int cms_kari_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, void *exarg) |
146 | 310k | { |
147 | 198k | CMS_KeyAgreeRecipientInfo *kari = (CMS_KeyAgreeRecipientInfo *)*pval; |
148 | 198k | if (operation == ASN1_OP_NEW_POST) { |
149 | 18.6k | kari->ctx = EVP_CIPHER_CTX_new(); |
150 | 18.6k | if (kari->ctx == NULL) |
151 | 0 | return 0; |
152 | 18.6k | EVP_CIPHER_CTX_set_flags(kari->ctx, EVP_CIPHER_CTX_FLAG_WRAP_ALLOW); |
153 | 18.6k | kari->pctx = NULL; |
154 | 180k | } else if (operation == ASN1_OP_FREE_POST) { |
155 | 18.6k | EVP_PKEY_CTX_free(kari->pctx); |
156 | 18.6k | EVP_CIPHER_CTX_free(kari->ctx); |
157 | 18.6k | } |
158 | 198k | return 1; |
159 | 198k | } |
160 | | |
161 | | ASN1_SEQUENCE_cb(CMS_KeyAgreeRecipientInfo, cms_kari_cb) = { |
162 | | ASN1_EMBED(CMS_KeyAgreeRecipientInfo, version, INT32), |
163 | | ASN1_EXP(CMS_KeyAgreeRecipientInfo, originator, CMS_OriginatorIdentifierOrKey, 0), |
164 | | ASN1_EXP_OPT(CMS_KeyAgreeRecipientInfo, ukm, ASN1_OCTET_STRING, 1), |
165 | | ASN1_SIMPLE(CMS_KeyAgreeRecipientInfo, keyEncryptionAlgorithm, X509_ALGOR), |
166 | | ASN1_SEQUENCE_OF(CMS_KeyAgreeRecipientInfo, recipientEncryptedKeys, CMS_RecipientEncryptedKey) |
167 | | } ASN1_SEQUENCE_END_cb(CMS_KeyAgreeRecipientInfo, CMS_KeyAgreeRecipientInfo) |
168 | | |
169 | | ASN1_SEQUENCE(CMS_KEKIdentifier) = { |
170 | | ASN1_SIMPLE(CMS_KEKIdentifier, keyIdentifier, ASN1_OCTET_STRING), |
171 | | ASN1_OPT(CMS_KEKIdentifier, date, ASN1_GENERALIZEDTIME), |
172 | | ASN1_OPT(CMS_KEKIdentifier, other, CMS_OtherKeyAttribute) |
173 | 26.9k | } static_ASN1_SEQUENCE_END(CMS_KEKIdentifier) |
174 | 26.9k | |
175 | 26.9k | ASN1_SEQUENCE(CMS_KEKRecipientInfo) |
176 | 80.4k | = { ASN1_EMBED(CMS_KEKRecipientInfo, version, INT32), ASN1_SIMPLE(CMS_KEKRecipientInfo, kekid, CMS_KEKIdentifier), ASN1_SIMPLE(CMS_KEKRecipientInfo, keyEncryptionAlgorithm, X509_ALGOR), ASN1_SIMPLE(CMS_KEKRecipientInfo, encryptedKey, ASN1_OCTET_STRING) } ASN1_SEQUENCE_END(CMS_KEKRecipientInfo) |
177 | 80.4k | |
178 | 80.4k | ASN1_SEQUENCE(CMS_PasswordRecipientInfo) = { |
179 | 80.4k | ASN1_EMBED(CMS_PasswordRecipientInfo, version, INT32), |
180 | 80.4k | ASN1_IMP_OPT(CMS_PasswordRecipientInfo, keyDerivationAlgorithm, X509_ALGOR, 0), |
181 | 80.4k | ASN1_SIMPLE(CMS_PasswordRecipientInfo, keyEncryptionAlgorithm, X509_ALGOR), |
182 | 80.4k | ASN1_SIMPLE(CMS_PasswordRecipientInfo, encryptedKey, ASN1_OCTET_STRING) |
183 | 181k | } ASN1_SEQUENCE_END(CMS_PasswordRecipientInfo) |
184 | 181k | |
185 | 181k | ASN1_SEQUENCE(CMS_OtherRecipientInfo) = { |
186 | 181k | ASN1_SIMPLE(CMS_OtherRecipientInfo, oriType, ASN1_OBJECT), |
187 | 181k | ASN1_OPT(CMS_OtherRecipientInfo, oriValue, ASN1_ANY) |
188 | 181k | } static_ASN1_SEQUENCE_END(CMS_OtherRecipientInfo) |
189 | 94.7k | |
190 | 94.7k | /* Free up RecipientInfo additional data */ |
191 | 94.7k | static int cms_ri_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, void *exarg) |
192 | 603k | { |
193 | 603k | if (operation == ASN1_OP_FREE_PRE) { |
194 | 73.3k | CMS_RecipientInfo *ri = (CMS_RecipientInfo *)*pval; |
195 | 73.3k | if (ri->type == CMS_RECIPINFO_TRANS) { |
196 | 8.92k | CMS_KeyTransRecipientInfo *ktri = ri->d.ktri; |
197 | 8.92k | EVP_PKEY_free(ktri->pkey); |
198 | 8.92k | X509_free(ktri->recip); |
199 | 8.92k | EVP_PKEY_CTX_free(ktri->pctx); |
200 | 64.4k | } else if (ri->type == CMS_RECIPINFO_KEK) { |
201 | 5.07k | CMS_KEKRecipientInfo *kekri = ri->d.kekri; |
202 | 5.07k | OPENSSL_clear_free(kekri->key, kekri->keylen); |
203 | 59.3k | } else if (ri->type == CMS_RECIPINFO_PASS) { |
204 | 23.7k | CMS_PasswordRecipientInfo *pwri = ri->d.pwri; |
205 | 23.7k | OPENSSL_clear_free(pwri->pass, pwri->passlen); |
206 | 23.7k | } |
207 | 73.3k | } |
208 | 603k | return 1; |
209 | 603k | } |
210 | | |
211 | | ASN1_CHOICE_cb(CMS_RecipientInfo, cms_ri_cb) = { |
212 | | ASN1_SIMPLE(CMS_RecipientInfo, d.ktri, CMS_KeyTransRecipientInfo), |
213 | | ASN1_IMP(CMS_RecipientInfo, d.kari, CMS_KeyAgreeRecipientInfo, 1), |
214 | | ASN1_IMP(CMS_RecipientInfo, d.kekri, CMS_KEKRecipientInfo, 2), |
215 | | ASN1_IMP(CMS_RecipientInfo, d.pwri, CMS_PasswordRecipientInfo, 3), |
216 | | ASN1_IMP(CMS_RecipientInfo, d.ori, CMS_OtherRecipientInfo, 4) |
217 | 469k | } ASN1_CHOICE_END_cb(CMS_RecipientInfo, CMS_RecipientInfo, type) |
218 | | |
219 | | ASN1_NDEF_SEQUENCE(CMS_EnvelopedData) = { |
220 | | ASN1_EMBED(CMS_EnvelopedData, version, INT32), |
221 | | ASN1_IMP_OPT(CMS_EnvelopedData, originatorInfo, CMS_OriginatorInfo, 0), |
222 | | ASN1_SET_OF(CMS_EnvelopedData, recipientInfos, CMS_RecipientInfo), |
223 | | ASN1_SIMPLE(CMS_EnvelopedData, encryptedContentInfo, CMS_EncryptedContentInfo), |
224 | | ASN1_IMP_SET_OF_OPT(CMS_EnvelopedData, unprotectedAttrs, X509_ATTRIBUTE, 1) |
225 | 27.5k | } ASN1_NDEF_SEQUENCE_END(CMS_EnvelopedData) |
226 | | |
227 | | ASN1_NDEF_SEQUENCE(CMS_DigestedData) = { |
228 | | ASN1_EMBED(CMS_DigestedData, version, INT32), |
229 | | ASN1_SIMPLE(CMS_DigestedData, digestAlgorithm, X509_ALGOR), |
230 | | ASN1_SIMPLE(CMS_DigestedData, encapContentInfo, CMS_EncapsulatedContentInfo), |
231 | | ASN1_SIMPLE(CMS_DigestedData, digest, ASN1_OCTET_STRING) |
232 | 583 | } ASN1_NDEF_SEQUENCE_END(CMS_DigestedData) |
233 | | |
234 | | ASN1_NDEF_SEQUENCE(CMS_EncryptedData) = { |
235 | | ASN1_EMBED(CMS_EncryptedData, version, INT32), |
236 | | ASN1_SIMPLE(CMS_EncryptedData, encryptedContentInfo, CMS_EncryptedContentInfo), |
237 | | ASN1_IMP_SET_OF_OPT(CMS_EncryptedData, unprotectedAttrs, X509_ATTRIBUTE, 1) |
238 | 1.83k | } ASN1_NDEF_SEQUENCE_END(CMS_EncryptedData) |
239 | | |
240 | | /* Defined in RFC 5083 - Section 2.1. AuthEnvelopedData Type */ |
241 | | ASN1_NDEF_SEQUENCE(CMS_AuthEnvelopedData) = { |
242 | | ASN1_EMBED(CMS_AuthEnvelopedData, version, INT32), |
243 | | ASN1_IMP_OPT(CMS_AuthEnvelopedData, originatorInfo, CMS_OriginatorInfo, 0), |
244 | | ASN1_SET_OF(CMS_AuthEnvelopedData, recipientInfos, CMS_RecipientInfo), |
245 | | ASN1_SIMPLE(CMS_AuthEnvelopedData, authEncryptedContentInfo, CMS_EncryptedContentInfo), |
246 | | ASN1_IMP_SET_OF_OPT(CMS_AuthEnvelopedData, authAttrs, X509_ALGOR, 2), |
247 | | ASN1_SIMPLE(CMS_AuthEnvelopedData, mac, ASN1_OCTET_STRING), |
248 | | ASN1_IMP_SET_OF_OPT(CMS_AuthEnvelopedData, unauthAttrs, X509_ALGOR, 3) |
249 | 149 | } ASN1_NDEF_SEQUENCE_END(CMS_AuthEnvelopedData) |
250 | | |
251 | | ASN1_NDEF_SEQUENCE(CMS_AuthenticatedData) = { |
252 | | ASN1_EMBED(CMS_AuthenticatedData, version, INT32), |
253 | | ASN1_IMP_OPT(CMS_AuthenticatedData, originatorInfo, CMS_OriginatorInfo, 0), |
254 | | ASN1_SET_OF(CMS_AuthenticatedData, recipientInfos, CMS_RecipientInfo), |
255 | | ASN1_SIMPLE(CMS_AuthenticatedData, macAlgorithm, X509_ALGOR), |
256 | | ASN1_IMP(CMS_AuthenticatedData, digestAlgorithm, X509_ALGOR, 1), |
257 | | ASN1_SIMPLE(CMS_AuthenticatedData, encapContentInfo, CMS_EncapsulatedContentInfo), |
258 | | ASN1_IMP_SET_OF_OPT(CMS_AuthenticatedData, authAttrs, X509_ALGOR, 2), |
259 | | ASN1_SIMPLE(CMS_AuthenticatedData, mac, ASN1_OCTET_STRING), |
260 | | ASN1_IMP_SET_OF_OPT(CMS_AuthenticatedData, unauthAttrs, X509_ALGOR, 3) |
261 | 59.3k | } static_ASN1_NDEF_SEQUENCE_END(CMS_AuthenticatedData) |
262 | | |
263 | | ASN1_NDEF_SEQUENCE(CMS_CompressedData) |
264 | | = { |
265 | | ASN1_EMBED(CMS_CompressedData, version, INT32), |
266 | | ASN1_SIMPLE(CMS_CompressedData, compressionAlgorithm, X509_ALGOR), |
267 | | ASN1_SIMPLE(CMS_CompressedData, encapContentInfo, CMS_EncapsulatedContentInfo), |
268 | 124 | } ASN1_NDEF_SEQUENCE_END(CMS_CompressedData) |
269 | | |
270 | | /* This is the ANY DEFINED BY table for the top level ContentInfo structure */ |
271 | | |
272 | | ASN1_ADB_TEMPLATE(cms_default) = ASN1_EXP(CMS_ContentInfo, d.other, ASN1_ANY, 0); |
273 | | |
274 | | ASN1_ADB(CMS_ContentInfo) = { |
275 | | ADB_ENTRY(NID_pkcs7_data, ASN1_NDEF_EXP(CMS_ContentInfo, d.data, ASN1_OCTET_STRING_NDEF, 0)), |
276 | | ADB_ENTRY(NID_pkcs7_signed, ASN1_NDEF_EXP(CMS_ContentInfo, d.signedData, CMS_SignedData, 0)), |
277 | | ADB_ENTRY(NID_pkcs7_enveloped, ASN1_NDEF_EXP(CMS_ContentInfo, d.envelopedData, CMS_EnvelopedData, 0)), |
278 | | ADB_ENTRY(NID_pkcs7_digest, ASN1_NDEF_EXP(CMS_ContentInfo, d.digestedData, CMS_DigestedData, 0)), |
279 | | ADB_ENTRY(NID_pkcs7_encrypted, ASN1_NDEF_EXP(CMS_ContentInfo, d.encryptedData, CMS_EncryptedData, 0)), |
280 | | ADB_ENTRY(NID_id_smime_ct_authEnvelopedData, ASN1_NDEF_EXP(CMS_ContentInfo, d.authEnvelopedData, CMS_AuthEnvelopedData, 0)), |
281 | | ADB_ENTRY(NID_id_smime_ct_authData, ASN1_NDEF_EXP(CMS_ContentInfo, d.authenticatedData, CMS_AuthenticatedData, 0)), |
282 | | ADB_ENTRY(NID_id_smime_ct_compressedData, ASN1_NDEF_EXP(CMS_ContentInfo, d.compressedData, CMS_CompressedData, 0)), |
283 | 399k | } ASN1_ADB_END(CMS_ContentInfo, 0, contentType, 0, &cms_default_tt, NULL); |
284 | | |
285 | | /* CMS streaming support */ |
286 | | static int cms_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, |
287 | | void *exarg) |
288 | 564k | { |
289 | 564k | ASN1_STREAM_ARG *sarg = exarg; |
290 | 564k | CMS_ContentInfo *cms = NULL; |
291 | 564k | if (pval) |
292 | 564k | cms = (CMS_ContentInfo *)*pval; |
293 | 0 | else |
294 | 0 | return 1; |
295 | 564k | switch (operation) { |
296 | | |
297 | 0 | case ASN1_OP_STREAM_PRE: |
298 | 0 | if (CMS_stream(&sarg->boundary, cms) <= 0) |
299 | 0 | return 0; |
300 | | /* fall thru */ |
301 | 0 | case ASN1_OP_DETACHED_PRE: |
302 | 0 | sarg->ndef_bio = CMS_dataInit(cms, sarg->out); |
303 | 0 | if (!sarg->ndef_bio) |
304 | 0 | return 0; |
305 | 0 | break; |
306 | | |
307 | 0 | case ASN1_OP_STREAM_POST: |
308 | 0 | case ASN1_OP_DETACHED_POST: |
309 | 0 | if (CMS_dataFinal(cms, sarg->ndef_bio) <= 0) |
310 | 0 | return 0; |
311 | 0 | break; |
312 | | |
313 | 105k | case ASN1_OP_FREE_POST: |
314 | 105k | OPENSSL_free(cms->ctx.propq); |
315 | 105k | break; |
316 | 564k | } |
317 | 564k | return 1; |
318 | 564k | } |
319 | | |
320 | | ASN1_NDEF_SEQUENCE_cb(CMS_ContentInfo, cms_cb) = { |
321 | | ASN1_SIMPLE(CMS_ContentInfo, contentType, ASN1_OBJECT), |
322 | | ASN1_ADB_OBJECT(CMS_ContentInfo) |
323 | | } ASN1_NDEF_SEQUENCE_END_cb(CMS_ContentInfo, CMS_ContentInfo) |
324 | | |
325 | | /* Specials for signed attributes */ |
326 | | |
327 | | /* |
328 | | * When signing attributes we want to reorder them to match the sorted |
329 | | * encoding. |
330 | | */ |
331 | | |
332 | | ASN1_ITEM_TEMPLATE(CMS_Attributes_Sign) = ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SET_ORDER, 0, CMS_ATTRIBUTES, X509_ATTRIBUTE) |
333 | 0 | ASN1_ITEM_TEMPLATE_END(CMS_Attributes_Sign) |
334 | | |
335 | | /* |
336 | | * When verifying attributes we need to use the received order. So we use |
337 | | * SEQUENCE OF and tag it to SET OF |
338 | | */ |
339 | | |
340 | | ASN1_ITEM_TEMPLATE(CMS_Attributes_Verify) = ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF | ASN1_TFLG_IMPTAG | ASN1_TFLG_UNIVERSAL, |
341 | | V_ASN1_SET, CMS_ATTRIBUTES, X509_ATTRIBUTE) |
342 | 0 | ASN1_ITEM_TEMPLATE_END(CMS_Attributes_Verify) |
343 | | |
344 | | ASN1_CHOICE(CMS_ReceiptsFrom) = { |
345 | | ASN1_IMP_EMBED(CMS_ReceiptsFrom, d.allOrFirstTier, INT32, 0), |
346 | | ASN1_IMP_SEQUENCE_OF(CMS_ReceiptsFrom, d.receiptList, GENERAL_NAMES, 1) |
347 | 237k | } static_ASN1_CHOICE_END(CMS_ReceiptsFrom) |
348 | 237k | |
349 | 237k | ASN1_SEQUENCE(CMS_ReceiptRequest) |
350 | 237k | = { ASN1_SIMPLE(CMS_ReceiptRequest, signedContentIdentifier, ASN1_OCTET_STRING), ASN1_SIMPLE(CMS_ReceiptRequest, receiptsFrom, CMS_ReceiptsFrom), ASN1_SEQUENCE_OF(CMS_ReceiptRequest, receiptsTo, GENERAL_NAMES) } ASN1_SEQUENCE_END(CMS_ReceiptRequest) |
351 | 72.6k | |
352 | 72.6k | ASN1_SEQUENCE(CMS_Receipt) = { |
353 | 72.6k | ASN1_EMBED(CMS_Receipt, version, INT32), |
354 | 72.6k | ASN1_SIMPLE(CMS_Receipt, contentType, ASN1_OBJECT), |
355 | 72.6k | ASN1_SIMPLE(CMS_Receipt, signedContentIdentifier, ASN1_OCTET_STRING), |
356 | 72.6k | ASN1_SIMPLE(CMS_Receipt, originatorSignatureValue, ASN1_OCTET_STRING) |
357 | 72.6k | } ASN1_SEQUENCE_END(CMS_Receipt) |
358 | 0 |
|
359 | 0 | /* |
360 | 0 | * Utilities to encode the CMS_SharedInfo structure used during key |
361 | 0 | * derivation. |
362 | 0 | */ |
363 | 0 |
|
364 | 0 | typedef struct { |
365 | 0 | X509_ALGOR *keyInfo; |
366 | 0 | ASN1_OCTET_STRING *entityUInfo; |
367 | 0 | ASN1_OCTET_STRING *suppPubInfo; |
368 | 0 | } CMS_SharedInfo; |
369 | 0 |
|
370 | 0 | ASN1_SEQUENCE(CMS_SharedInfo) = { |
371 | 0 | ASN1_SIMPLE(CMS_SharedInfo, keyInfo, X509_ALGOR), |
372 | 0 | ASN1_EXP_OPT(CMS_SharedInfo, entityUInfo, ASN1_OCTET_STRING, 0), |
373 | 0 | ASN1_EXP_OPT(CMS_SharedInfo, suppPubInfo, ASN1_OCTET_STRING, 2), |
374 | 0 | } static_ASN1_SEQUENCE_END(CMS_SharedInfo) |
375 | 0 |
|
376 | 0 | int CMS_SharedInfo_encode(unsigned char **pder, X509_ALGOR *kekalg, ASN1_OCTET_STRING *ukm, int keylen) |
377 | 0 | { |
378 | 0 | union { |
379 | 0 | CMS_SharedInfo *pecsi; |
380 | 0 | ASN1_VALUE *a; |
381 | 0 | } intsi = { |
382 | 0 | NULL |
383 | 0 | }; |
384 | |
|
385 | 0 | ASN1_OCTET_STRING oklen; |
386 | 0 | unsigned char kl[4]; |
387 | 0 | CMS_SharedInfo ecsi; |
388 | |
|
389 | 0 | keylen <<= 3; |
390 | 0 | kl[0] = (keylen >> 24) & 0xff; |
391 | 0 | kl[1] = (keylen >> 16) & 0xff; |
392 | 0 | kl[2] = (keylen >> 8) & 0xff; |
393 | 0 | kl[3] = keylen & 0xff; |
394 | 0 | oklen.length = 4; |
395 | 0 | oklen.data = kl; |
396 | 0 | oklen.type = V_ASN1_OCTET_STRING; |
397 | 0 | oklen.flags = 0; |
398 | 0 | ecsi.keyInfo = kekalg; |
399 | 0 | ecsi.entityUInfo = ukm; |
400 | 0 | ecsi.suppPubInfo = &oklen; |
401 | 0 | intsi.pecsi = &ecsi; |
402 | 0 | return ASN1_item_i2d(intsi.a, pder, ASN1_ITEM_rptr(CMS_SharedInfo)); |
403 | 0 | } |