/src/openssl36/crypto/cms/cms_asn1.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright 2008-2025 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 | 150k | } ASN1_SEQUENCE_END(CMS_IssuerAndSerialNumber) |
20 | 150k | |
21 | 150k | ASN1_SEQUENCE(CMS_OtherCertificateFormat) = { |
22 | 150k | ASN1_SIMPLE(CMS_OtherCertificateFormat, otherCertFormat, ASN1_OBJECT), |
23 | 150k | ASN1_OPT(CMS_OtherCertificateFormat, otherCert, ASN1_ANY) |
24 | 150k | } static_ASN1_SEQUENCE_END(CMS_OtherCertificateFormat) |
25 | 107k | |
26 | 107k | ASN1_CHOICE(CMS_CertificateChoices) |
27 | 11.1M | = { 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.1M | |
29 | 11.1M | ASN1_CHOICE(CMS_SignerIdentifier) = { |
30 | 11.1M | ASN1_SIMPLE(CMS_SignerIdentifier, d.issuerAndSerialNumber, CMS_IssuerAndSerialNumber), |
31 | 11.1M | ASN1_IMP(CMS_SignerIdentifier, d.subjectKeyIdentifier, ASN1_OCTET_STRING, 0) |
32 | 11.1M | } static_ASN1_CHOICE_END(CMS_SignerIdentifier) |
33 | 479k | |
34 | 479k | ASN1_NDEF_SEQUENCE(CMS_EncapsulatedContentInfo) |
35 | 479k | = { 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 | 243k | { |
40 | 243k | if (operation == ASN1_OP_FREE_POST) { |
41 | 27.5k | CMS_SignerInfo *si = (CMS_SignerInfo *)*pval; |
42 | 27.5k | EVP_PKEY_free(si->pkey); |
43 | 27.5k | X509_free(si->signer); |
44 | 27.5k | EVP_MD_CTX_free(si->mctx); |
45 | 27.5k | EVP_PKEY_CTX_free(si->pctx); |
46 | 27.5k | } |
47 | 243k | return 1; |
48 | 243k | } |
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 | 6.11k | } static_ASN1_SEQUENCE_END(CMS_OtherRevocationInfoFormat) |
64 | 6.11k | |
65 | 6.11k | ASN1_CHOICE(CMS_RevocationInfoChoice) |
66 | 564k | = { ASN1_SIMPLE(CMS_RevocationInfoChoice, d.crl, X509_CRL), ASN1_IMP(CMS_RevocationInfoChoice, d.other, CMS_OtherRevocationInfoFormat, 1) } ASN1_CHOICE_END(CMS_RevocationInfoChoice) |
67 | 564k | |
68 | 564k | ASN1_NDEF_SEQUENCE(CMS_SignedData) = { |
69 | 564k | ASN1_EMBED(CMS_SignedData, version, INT32), |
70 | 564k | ASN1_SET_OF(CMS_SignedData, digestAlgorithms, X509_ALGOR), |
71 | 564k | ASN1_SIMPLE(CMS_SignedData, encapContentInfo, CMS_EncapsulatedContentInfo), |
72 | 564k | ASN1_IMP_SET_OF_OPT(CMS_SignedData, certificates, CMS_CertificateChoices, 0), |
73 | 564k | ASN1_IMP_SET_OF_OPT(CMS_SignedData, crls, CMS_RevocationInfoChoice, 1), |
74 | 564k | ASN1_SET_OF(CMS_SignedData, signerInfos, CMS_SignerInfo) |
75 | 564k | } ASN1_NDEF_SEQUENCE_END(CMS_SignedData) |
76 | | IMPLEMENT_ASN1_ALLOC_FUNCTIONS(CMS_SignedData) |
77 | | |
78 | | ASN1_SEQUENCE(CMS_OriginatorInfo) = { |
79 | | ASN1_IMP_SET_OF_OPT(CMS_OriginatorInfo, certificates, CMS_CertificateChoices, 0), |
80 | | ASN1_IMP_SET_OF_OPT(CMS_OriginatorInfo, crls, CMS_RevocationInfoChoice, 1) |
81 | 164k | } static_ASN1_SEQUENCE_END(CMS_OriginatorInfo) |
82 | 164k | |
83 | 164k | static int cms_ec_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, void *exarg) |
84 | 164k | { |
85 | 58.1k | CMS_EncryptedContentInfo *ec = (CMS_EncryptedContentInfo *)*pval; |
86 | | |
87 | 58.1k | if (operation == ASN1_OP_FREE_POST) |
88 | 8.53k | OPENSSL_clear_free(ec->key, ec->keylen); |
89 | 58.1k | return 1; |
90 | 58.1k | } |
91 | | |
92 | | ASN1_NDEF_SEQUENCE_cb(CMS_EncryptedContentInfo, cms_ec_cb) = { |
93 | | ASN1_SIMPLE(CMS_EncryptedContentInfo, contentType, ASN1_OBJECT), |
94 | | ASN1_SIMPLE(CMS_EncryptedContentInfo, contentEncryptionAlgorithm, X509_ALGOR), |
95 | | ASN1_IMP_OPT(CMS_EncryptedContentInfo, encryptedContent, ASN1_OCTET_STRING_NDEF, 0) |
96 | | } ASN1_NDEF_SEQUENCE_END_cb(CMS_EncryptedContentInfo, CMS_EncryptedContentInfo) |
97 | | |
98 | | ASN1_SEQUENCE(CMS_KeyTransRecipientInfo) = { |
99 | | ASN1_EMBED(CMS_KeyTransRecipientInfo, version, INT32), |
100 | | ASN1_SIMPLE(CMS_KeyTransRecipientInfo, rid, CMS_SignerIdentifier), |
101 | | ASN1_SIMPLE(CMS_KeyTransRecipientInfo, keyEncryptionAlgorithm, X509_ALGOR), |
102 | | ASN1_SIMPLE(CMS_KeyTransRecipientInfo, encryptedKey, ASN1_OCTET_STRING) |
103 | 145k | } ASN1_SEQUENCE_END(CMS_KeyTransRecipientInfo) |
104 | 145k | |
105 | 145k | ASN1_SEQUENCE(CMS_OtherKeyAttribute) = { |
106 | 145k | ASN1_SIMPLE(CMS_OtherKeyAttribute, keyAttrId, ASN1_OBJECT), |
107 | 145k | ASN1_OPT(CMS_OtherKeyAttribute, keyAttr, ASN1_ANY) |
108 | 145k | } ASN1_SEQUENCE_END(CMS_OtherKeyAttribute) |
109 | 99.4k | |
110 | 99.4k | ASN1_SEQUENCE(CMS_RecipientKeyIdentifier) = { |
111 | 99.4k | ASN1_SIMPLE(CMS_RecipientKeyIdentifier, subjectKeyIdentifier, ASN1_OCTET_STRING), |
112 | 99.4k | ASN1_OPT(CMS_RecipientKeyIdentifier, date, ASN1_GENERALIZEDTIME), |
113 | 99.4k | ASN1_OPT(CMS_RecipientKeyIdentifier, other, CMS_OtherKeyAttribute) |
114 | 99.4k | } ASN1_SEQUENCE_END(CMS_RecipientKeyIdentifier) |
115 | 40.2k | |
116 | 40.2k | ASN1_CHOICE(CMS_KeyAgreeRecipientIdentifier) = { |
117 | 40.2k | ASN1_SIMPLE(CMS_KeyAgreeRecipientIdentifier, d.issuerAndSerialNumber, CMS_IssuerAndSerialNumber), |
118 | 40.2k | ASN1_IMP(CMS_KeyAgreeRecipientIdentifier, d.rKeyId, CMS_RecipientKeyIdentifier, 0) |
119 | 112k | } static_ASN1_CHOICE_END(CMS_KeyAgreeRecipientIdentifier) |
120 | 112k | |
121 | 112k | static int cms_rek_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, void *exarg) |
122 | 112k | { |
123 | 90.0k | CMS_RecipientEncryptedKey *rek = (CMS_RecipientEncryptedKey *)*pval; |
124 | 90.0k | if (operation == ASN1_OP_FREE_POST) { |
125 | 11.2k | EVP_PKEY_free(rek->pkey); |
126 | 11.2k | } |
127 | 90.0k | return 1; |
128 | 90.0k | } |
129 | | |
130 | | ASN1_SEQUENCE_cb(CMS_RecipientEncryptedKey, cms_rek_cb) = { |
131 | | ASN1_SIMPLE(CMS_RecipientEncryptedKey, rid, CMS_KeyAgreeRecipientIdentifier), |
132 | | ASN1_SIMPLE(CMS_RecipientEncryptedKey, encryptedKey, ASN1_OCTET_STRING) |
133 | | } ASN1_SEQUENCE_END_cb(CMS_RecipientEncryptedKey, CMS_RecipientEncryptedKey) |
134 | | |
135 | | ASN1_SEQUENCE(CMS_OriginatorPublicKey) = { |
136 | | ASN1_SIMPLE(CMS_OriginatorPublicKey, algorithm, X509_ALGOR), |
137 | | ASN1_SIMPLE(CMS_OriginatorPublicKey, publicKey, ASN1_BIT_STRING) |
138 | 65 | } ASN1_SEQUENCE_END(CMS_OriginatorPublicKey) |
139 | 65 | |
140 | 65 | ASN1_CHOICE(CMS_OriginatorIdentifierOrKey) = { |
141 | 65 | ASN1_SIMPLE(CMS_OriginatorIdentifierOrKey, d.issuerAndSerialNumber, CMS_IssuerAndSerialNumber), |
142 | 65 | ASN1_IMP(CMS_OriginatorIdentifierOrKey, d.subjectKeyIdentifier, ASN1_OCTET_STRING, 0), |
143 | 65 | ASN1_IMP(CMS_OriginatorIdentifierOrKey, d.originatorKey, CMS_OriginatorPublicKey, 1) |
144 | 287k | } static_ASN1_CHOICE_END(CMS_OriginatorIdentifierOrKey) |
145 | 287k | |
146 | 287k | static int cms_kari_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, void *exarg) |
147 | 287k | { |
148 | 183k | CMS_KeyAgreeRecipientInfo *kari = (CMS_KeyAgreeRecipientInfo *)*pval; |
149 | 183k | if (operation == ASN1_OP_NEW_POST) { |
150 | 17.1k | kari->ctx = EVP_CIPHER_CTX_new(); |
151 | 17.1k | if (kari->ctx == NULL) |
152 | 0 | return 0; |
153 | 17.1k | EVP_CIPHER_CTX_set_flags(kari->ctx, EVP_CIPHER_CTX_FLAG_WRAP_ALLOW); |
154 | 17.1k | kari->pctx = NULL; |
155 | 166k | } else if (operation == ASN1_OP_FREE_POST) { |
156 | 17.1k | EVP_PKEY_CTX_free(kari->pctx); |
157 | 17.1k | EVP_CIPHER_CTX_free(kari->ctx); |
158 | 17.1k | } |
159 | 183k | return 1; |
160 | 183k | } |
161 | | |
162 | | ASN1_SEQUENCE_cb(CMS_KeyAgreeRecipientInfo, cms_kari_cb) = { |
163 | | ASN1_EMBED(CMS_KeyAgreeRecipientInfo, version, INT32), |
164 | | ASN1_EXP(CMS_KeyAgreeRecipientInfo, originator, CMS_OriginatorIdentifierOrKey, 0), |
165 | | ASN1_EXP_OPT(CMS_KeyAgreeRecipientInfo, ukm, ASN1_OCTET_STRING, 1), |
166 | | ASN1_SIMPLE(CMS_KeyAgreeRecipientInfo, keyEncryptionAlgorithm, X509_ALGOR), |
167 | | ASN1_SEQUENCE_OF(CMS_KeyAgreeRecipientInfo, recipientEncryptedKeys, CMS_RecipientEncryptedKey) |
168 | | } ASN1_SEQUENCE_END_cb(CMS_KeyAgreeRecipientInfo, CMS_KeyAgreeRecipientInfo) |
169 | | |
170 | | ASN1_SEQUENCE(CMS_KEKIdentifier) = { |
171 | | ASN1_SIMPLE(CMS_KEKIdentifier, keyIdentifier, ASN1_OCTET_STRING), |
172 | | ASN1_OPT(CMS_KEKIdentifier, date, ASN1_GENERALIZEDTIME), |
173 | | ASN1_OPT(CMS_KEKIdentifier, other, CMS_OtherKeyAttribute) |
174 | 30.0k | } static_ASN1_SEQUENCE_END(CMS_KEKIdentifier) |
175 | 30.0k | |
176 | 30.0k | ASN1_SEQUENCE(CMS_KEKRecipientInfo) |
177 | 82.3k | = { 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) |
178 | 82.3k | |
179 | 82.3k | ASN1_SEQUENCE(CMS_PasswordRecipientInfo) = { |
180 | 82.3k | ASN1_EMBED(CMS_PasswordRecipientInfo, version, INT32), |
181 | 82.3k | ASN1_IMP_OPT(CMS_PasswordRecipientInfo, keyDerivationAlgorithm, X509_ALGOR, 0), |
182 | 82.3k | ASN1_SIMPLE(CMS_PasswordRecipientInfo, keyEncryptionAlgorithm, X509_ALGOR), |
183 | 82.3k | ASN1_SIMPLE(CMS_PasswordRecipientInfo, encryptedKey, ASN1_OCTET_STRING) |
184 | 172k | } ASN1_SEQUENCE_END(CMS_PasswordRecipientInfo) |
185 | 172k | |
186 | 172k | static int cms_kemri_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, |
187 | 172k | void *exarg) |
188 | 172k | { |
189 | 10 | CMS_KEMRecipientInfo *kemri = (CMS_KEMRecipientInfo *)*pval; |
190 | | |
191 | 10 | if (operation == ASN1_OP_NEW_POST) { |
192 | 2 | kemri->ctx = EVP_CIPHER_CTX_new(); |
193 | 2 | if (kemri->ctx == NULL) |
194 | 0 | return 0; |
195 | 2 | EVP_CIPHER_CTX_set_flags(kemri->ctx, EVP_CIPHER_CTX_FLAG_WRAP_ALLOW); |
196 | 2 | kemri->pctx = NULL; |
197 | 8 | } else if (operation == ASN1_OP_FREE_POST) { |
198 | 2 | EVP_PKEY_CTX_free(kemri->pctx); |
199 | 2 | EVP_CIPHER_CTX_free(kemri->ctx); |
200 | 2 | ASN1_OCTET_STRING_free(kemri->ukm); |
201 | 2 | } |
202 | 10 | return 1; |
203 | 10 | } |
204 | | |
205 | | ASN1_SEQUENCE_cb(CMS_KEMRecipientInfo, cms_kemri_cb) = { |
206 | | ASN1_EMBED(CMS_KEMRecipientInfo, version, INT32), |
207 | | ASN1_SIMPLE(CMS_KEMRecipientInfo, rid, CMS_SignerIdentifier), |
208 | | ASN1_SIMPLE(CMS_KEMRecipientInfo, kem, X509_ALGOR), |
209 | | ASN1_SIMPLE(CMS_KEMRecipientInfo, kemct, ASN1_OCTET_STRING), |
210 | | ASN1_SIMPLE(CMS_KEMRecipientInfo, kdf, X509_ALGOR), |
211 | | ASN1_EMBED(CMS_KEMRecipientInfo, kekLength, INT32), |
212 | | ASN1_EXP_OPT(CMS_KEMRecipientInfo, ukm, ASN1_OCTET_STRING, 0), |
213 | | ASN1_SIMPLE(CMS_KEMRecipientInfo, wrap, X509_ALGOR), |
214 | | ASN1_SIMPLE(CMS_KEMRecipientInfo, encryptedKey, ASN1_OCTET_STRING) |
215 | | } ASN1_SEQUENCE_END_cb(CMS_KEMRecipientInfo, CMS_KEMRecipientInfo) |
216 | | |
217 | | ASN1_ADB_TEMPLATE(ori_def) = ASN1_SIMPLE(CMS_OtherRecipientInfo, d.other, ASN1_ANY); |
218 | | |
219 | | ASN1_ADB(CMS_OtherRecipientInfo) = { |
220 | | ADB_ENTRY(NID_id_smime_ori_kem, ASN1_SIMPLE(CMS_OtherRecipientInfo, d.kemri, CMS_KEMRecipientInfo)) |
221 | 31.9k | } ASN1_ADB_END(CMS_OtherRecipientInfo, 0, oriType, 0, &ori_def_tt, NULL); |
222 | | |
223 | | DECLARE_ASN1_FUNCTIONS(CMS_OtherRecipientInfo) |
224 | | |
225 | | ASN1_SEQUENCE(CMS_OtherRecipientInfo) = { |
226 | | ASN1_SIMPLE(CMS_OtherRecipientInfo, oriType, ASN1_OBJECT), |
227 | | ASN1_ADB_OBJECT(CMS_OtherRecipientInfo) |
228 | 21.7k | } ASN1_SEQUENCE_END(CMS_OtherRecipientInfo) |
229 | 21.7k | |
230 | 21.7k | IMPLEMENT_ASN1_FUNCTIONS(CMS_OtherRecipientInfo) |
231 | 21.7k | |
232 | 21.7k | /* Free up RecipientInfo additional data */ |
233 | 21.7k | static int cms_ri_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, |
234 | 21.7k | void *exarg) |
235 | 233k | { |
236 | 233k | if (operation == ASN1_OP_FREE_PRE) { |
237 | 28.0k | CMS_RecipientInfo *ri = (CMS_RecipientInfo *)*pval; |
238 | 28.0k | if (ri->type == CMS_RECIPINFO_TRANS) { |
239 | 3.97k | CMS_KeyTransRecipientInfo *ktri = ri->d.ktri; |
240 | 3.97k | EVP_PKEY_free(ktri->pkey); |
241 | 3.97k | X509_free(ktri->recip); |
242 | 3.97k | EVP_PKEY_CTX_free(ktri->pctx); |
243 | 24.0k | } else if (ri->type == CMS_RECIPINFO_KEK) { |
244 | 2.36k | CMS_KEKRecipientInfo *kekri = ri->d.kekri; |
245 | 2.36k | OPENSSL_clear_free(kekri->key, kekri->keylen); |
246 | 21.7k | } else if (ri->type == CMS_RECIPINFO_PASS) { |
247 | 11.3k | CMS_PasswordRecipientInfo *pwri = ri->d.pwri; |
248 | 11.3k | OPENSSL_clear_free(pwri->pass, pwri->passlen); |
249 | 11.3k | } |
250 | 205k | } else if (operation == ASN1_OP_D2I_POST) { |
251 | 26.3k | CMS_RecipientInfo *ri = (CMS_RecipientInfo *)*pval; |
252 | | |
253 | 26.3k | ri->type = ri->encoded_type; |
254 | 26.3k | if (ri->type == CMS_RECIPINFO_OTHER) { |
255 | 3.90k | int nid; |
256 | | |
257 | 3.90k | nid = OBJ_obj2nid(ri->d.ori->oriType); |
258 | | /* For ORI, map NID to specific type */ |
259 | 3.90k | if (nid == NID_id_smime_ori_kem) |
260 | 0 | ri->type = CMS_RECIPINFO_KEM; |
261 | | /* Otherwise stay with generic CMS_RECIPINFO_OTHER type */ |
262 | 3.90k | } |
263 | 179k | } else if (operation == ASN1_OP_NEW_POST) { |
264 | 28.0k | CMS_RecipientInfo *ri = (CMS_RecipientInfo *)*pval; |
265 | | |
266 | 28.0k | ri->type = ri->encoded_type; |
267 | 28.0k | } |
268 | 233k | return 1; |
269 | 233k | } |
270 | | |
271 | | ASN1_CHOICE_cb(CMS_RecipientInfo, cms_ri_cb) = { |
272 | | ASN1_SIMPLE(CMS_RecipientInfo, d.ktri, CMS_KeyTransRecipientInfo), |
273 | | ASN1_IMP(CMS_RecipientInfo, d.kari, CMS_KeyAgreeRecipientInfo, 1), |
274 | | ASN1_IMP(CMS_RecipientInfo, d.kekri, CMS_KEKRecipientInfo, 2), |
275 | | ASN1_IMP(CMS_RecipientInfo, d.pwri, CMS_PasswordRecipientInfo, 3), |
276 | | ASN1_IMP(CMS_RecipientInfo, d.ori, CMS_OtherRecipientInfo, 4) |
277 | 447k | } ASN1_CHOICE_END_cb(CMS_RecipientInfo, CMS_RecipientInfo, encoded_type) |
278 | | |
279 | | ASN1_NDEF_SEQUENCE(CMS_EnvelopedData) = { |
280 | | ASN1_EMBED(CMS_EnvelopedData, version, INT32), |
281 | | ASN1_IMP_OPT(CMS_EnvelopedData, originatorInfo, CMS_OriginatorInfo, 0), |
282 | | ASN1_SET_OF(CMS_EnvelopedData, recipientInfos, CMS_RecipientInfo), |
283 | | ASN1_SIMPLE(CMS_EnvelopedData, encryptedContentInfo, CMS_EncryptedContentInfo), |
284 | | ASN1_IMP_SET_OF_OPT(CMS_EnvelopedData, unprotectedAttrs, X509_ATTRIBUTE, 1) |
285 | 27.0k | } ASN1_NDEF_SEQUENCE_END(CMS_EnvelopedData) |
286 | | IMPLEMENT_ASN1_DUP_FUNCTION(CMS_EnvelopedData) |
287 | | |
288 | | ASN1_NDEF_SEQUENCE(CMS_DigestedData) = { |
289 | | ASN1_EMBED(CMS_DigestedData, version, INT32), |
290 | | ASN1_SIMPLE(CMS_DigestedData, digestAlgorithm, X509_ALGOR), |
291 | | ASN1_SIMPLE(CMS_DigestedData, encapContentInfo, CMS_EncapsulatedContentInfo), |
292 | | ASN1_SIMPLE(CMS_DigestedData, digest, ASN1_OCTET_STRING) |
293 | 587 | } ASN1_NDEF_SEQUENCE_END(CMS_DigestedData) |
294 | | |
295 | | ASN1_NDEF_SEQUENCE(CMS_EncryptedData) = { |
296 | | ASN1_EMBED(CMS_EncryptedData, version, INT32), |
297 | | ASN1_SIMPLE(CMS_EncryptedData, encryptedContentInfo, CMS_EncryptedContentInfo), |
298 | | ASN1_IMP_SET_OF_OPT(CMS_EncryptedData, unprotectedAttrs, X509_ATTRIBUTE, 1) |
299 | 1.74k | } ASN1_NDEF_SEQUENCE_END(CMS_EncryptedData) |
300 | | |
301 | | /* Defined in RFC 5083 - Section 2.1. AuthEnvelopedData Type */ |
302 | | ASN1_NDEF_SEQUENCE(CMS_AuthEnvelopedData) = { |
303 | | ASN1_EMBED(CMS_AuthEnvelopedData, version, INT32), |
304 | | ASN1_IMP_OPT(CMS_AuthEnvelopedData, originatorInfo, CMS_OriginatorInfo, 0), |
305 | | ASN1_SET_OF(CMS_AuthEnvelopedData, recipientInfos, CMS_RecipientInfo), |
306 | | ASN1_SIMPLE(CMS_AuthEnvelopedData, authEncryptedContentInfo, CMS_EncryptedContentInfo), |
307 | | ASN1_IMP_SET_OF_OPT(CMS_AuthEnvelopedData, authAttrs, X509_ALGOR, 2), |
308 | | ASN1_SIMPLE(CMS_AuthEnvelopedData, mac, ASN1_OCTET_STRING), |
309 | | ASN1_IMP_SET_OF_OPT(CMS_AuthEnvelopedData, unauthAttrs, X509_ALGOR, 3) |
310 | 173 | } ASN1_NDEF_SEQUENCE_END(CMS_AuthEnvelopedData) |
311 | | |
312 | | ASN1_NDEF_SEQUENCE(CMS_AuthenticatedData) = { |
313 | | ASN1_EMBED(CMS_AuthenticatedData, version, INT32), |
314 | | ASN1_IMP_OPT(CMS_AuthenticatedData, originatorInfo, CMS_OriginatorInfo, 0), |
315 | | ASN1_SET_OF(CMS_AuthenticatedData, recipientInfos, CMS_RecipientInfo), |
316 | | ASN1_SIMPLE(CMS_AuthenticatedData, macAlgorithm, X509_ALGOR), |
317 | | ASN1_IMP(CMS_AuthenticatedData, digestAlgorithm, X509_ALGOR, 1), |
318 | | ASN1_SIMPLE(CMS_AuthenticatedData, encapContentInfo, CMS_EncapsulatedContentInfo), |
319 | | ASN1_IMP_SET_OF_OPT(CMS_AuthenticatedData, authAttrs, X509_ALGOR, 2), |
320 | | ASN1_SIMPLE(CMS_AuthenticatedData, mac, ASN1_OCTET_STRING), |
321 | | ASN1_IMP_SET_OF_OPT(CMS_AuthenticatedData, unauthAttrs, X509_ALGOR, 3) |
322 | 56.5k | } static_ASN1_NDEF_SEQUENCE_END(CMS_AuthenticatedData) |
323 | | |
324 | | ASN1_NDEF_SEQUENCE(CMS_CompressedData) |
325 | | = { |
326 | | ASN1_EMBED(CMS_CompressedData, version, INT32), |
327 | | ASN1_SIMPLE(CMS_CompressedData, compressionAlgorithm, X509_ALGOR), |
328 | | ASN1_SIMPLE(CMS_CompressedData, encapContentInfo, CMS_EncapsulatedContentInfo), |
329 | 134 | } ASN1_NDEF_SEQUENCE_END(CMS_CompressedData) |
330 | | |
331 | | /* This is the ANY DEFINED BY table for the top level ContentInfo structure */ |
332 | | |
333 | | ASN1_ADB_TEMPLATE(cms_default) = ASN1_EXP(CMS_ContentInfo, d.other, ASN1_ANY, 0); |
334 | | |
335 | | ASN1_ADB(CMS_ContentInfo) = { |
336 | | ADB_ENTRY(NID_pkcs7_data, ASN1_NDEF_EXP(CMS_ContentInfo, d.data, ASN1_OCTET_STRING_NDEF, 0)), |
337 | | ADB_ENTRY(NID_pkcs7_signed, ASN1_NDEF_EXP(CMS_ContentInfo, d.signedData, CMS_SignedData, 0)), |
338 | | ADB_ENTRY(NID_pkcs7_enveloped, ASN1_NDEF_EXP(CMS_ContentInfo, d.envelopedData, CMS_EnvelopedData, 0)), |
339 | | ADB_ENTRY(NID_pkcs7_digest, ASN1_NDEF_EXP(CMS_ContentInfo, d.digestedData, CMS_DigestedData, 0)), |
340 | | ADB_ENTRY(NID_pkcs7_encrypted, ASN1_NDEF_EXP(CMS_ContentInfo, d.encryptedData, CMS_EncryptedData, 0)), |
341 | | ADB_ENTRY(NID_id_smime_ct_authEnvelopedData, ASN1_NDEF_EXP(CMS_ContentInfo, d.authEnvelopedData, CMS_AuthEnvelopedData, 0)), |
342 | | ADB_ENTRY(NID_id_smime_ct_authData, ASN1_NDEF_EXP(CMS_ContentInfo, d.authenticatedData, CMS_AuthenticatedData, 0)), |
343 | | ADB_ENTRY(NID_id_smime_ct_compressedData, ASN1_NDEF_EXP(CMS_ContentInfo, d.compressedData, CMS_CompressedData, 0)), |
344 | 392k | } ASN1_ADB_END(CMS_ContentInfo, 0, contentType, 0, &cms_default_tt, NULL); |
345 | | |
346 | | /* CMS streaming support */ |
347 | | static int cms_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, |
348 | | void *exarg) |
349 | 553k | { |
350 | 553k | ASN1_STREAM_ARG *sarg = exarg; |
351 | 553k | CMS_ContentInfo *cms = NULL; |
352 | 553k | if (pval) |
353 | 553k | cms = (CMS_ContentInfo *)*pval; |
354 | 0 | else |
355 | 0 | return 1; |
356 | 553k | switch (operation) { |
357 | | |
358 | 0 | case ASN1_OP_STREAM_PRE: |
359 | 0 | if (CMS_stream(&sarg->boundary, cms) <= 0) |
360 | 0 | return 0; |
361 | | /* fall through */ |
362 | 0 | case ASN1_OP_DETACHED_PRE: |
363 | 0 | sarg->ndef_bio = CMS_dataInit(cms, sarg->out); |
364 | 0 | if (!sarg->ndef_bio) |
365 | 0 | return 0; |
366 | 0 | break; |
367 | | |
368 | 0 | case ASN1_OP_STREAM_POST: |
369 | 0 | case ASN1_OP_DETACHED_POST: |
370 | 0 | if (CMS_dataFinal(cms, sarg->ndef_bio) <= 0) |
371 | 0 | return 0; |
372 | 0 | break; |
373 | | |
374 | 103k | case ASN1_OP_FREE_POST: |
375 | 103k | OPENSSL_free(cms->ctx.propq); |
376 | 103k | break; |
377 | 553k | } |
378 | 553k | return 1; |
379 | 553k | } |
380 | | |
381 | | ASN1_NDEF_SEQUENCE_cb(CMS_ContentInfo, cms_cb) = { |
382 | | ASN1_SIMPLE(CMS_ContentInfo, contentType, ASN1_OBJECT), |
383 | | ASN1_ADB_OBJECT(CMS_ContentInfo) |
384 | | } ASN1_NDEF_SEQUENCE_END_cb(CMS_ContentInfo, CMS_ContentInfo) |
385 | | |
386 | | /* Specials for signed attributes */ |
387 | | |
388 | | /* |
389 | | * When signing attributes we want to reorder them to match the sorted |
390 | | * encoding. |
391 | | */ |
392 | | |
393 | | ASN1_ITEM_TEMPLATE(CMS_Attributes_Sign) = ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SET_ORDER, 0, CMS_ATTRIBUTES, X509_ATTRIBUTE) |
394 | 0 | ASN1_ITEM_TEMPLATE_END(CMS_Attributes_Sign) |
395 | | |
396 | | /* |
397 | | * When verifying attributes we need to use the received order. So we use |
398 | | * SEQUENCE OF and tag it to SET OF |
399 | | */ |
400 | | |
401 | | ASN1_ITEM_TEMPLATE(CMS_Attributes_Verify) = ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF | ASN1_TFLG_IMPTAG | ASN1_TFLG_UNIVERSAL, |
402 | | V_ASN1_SET, CMS_ATTRIBUTES, X509_ATTRIBUTE) |
403 | 0 | ASN1_ITEM_TEMPLATE_END(CMS_Attributes_Verify) |
404 | | |
405 | | ASN1_CHOICE(CMS_ReceiptsFrom) = { |
406 | | ASN1_IMP_EMBED(CMS_ReceiptsFrom, d.allOrFirstTier, INT32, 0), |
407 | | ASN1_IMP_SEQUENCE_OF(CMS_ReceiptsFrom, d.receiptList, GENERAL_NAMES, 1) |
408 | 230k | } static_ASN1_CHOICE_END(CMS_ReceiptsFrom) |
409 | 230k | |
410 | 230k | ASN1_SEQUENCE(CMS_ReceiptRequest) |
411 | 230k | = { 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) |
412 | 71.4k | |
413 | 71.4k | ASN1_SEQUENCE(CMS_Receipt) = { |
414 | 71.4k | ASN1_EMBED(CMS_Receipt, version, INT32), |
415 | 71.4k | ASN1_SIMPLE(CMS_Receipt, contentType, ASN1_OBJECT), |
416 | 71.4k | ASN1_SIMPLE(CMS_Receipt, signedContentIdentifier, ASN1_OCTET_STRING), |
417 | 71.4k | ASN1_SIMPLE(CMS_Receipt, originatorSignatureValue, ASN1_OCTET_STRING) |
418 | 71.4k | } ASN1_SEQUENCE_END(CMS_Receipt) |
419 | 0 |
|
420 | 0 | /* |
421 | 0 | * Utilities to encode the CMS_SharedInfo structure used during key |
422 | 0 | * derivation. |
423 | 0 | */ |
424 | 0 |
|
425 | 0 | typedef struct { |
426 | 0 | X509_ALGOR *keyInfo; |
427 | 0 | ASN1_OCTET_STRING *entityUInfo; |
428 | 0 | ASN1_OCTET_STRING *suppPubInfo; |
429 | 0 | } CMS_SharedInfo; |
430 | 0 |
|
431 | 0 | ASN1_SEQUENCE(CMS_SharedInfo) = { |
432 | 0 | ASN1_SIMPLE(CMS_SharedInfo, keyInfo, X509_ALGOR), |
433 | 0 | ASN1_EXP_OPT(CMS_SharedInfo, entityUInfo, ASN1_OCTET_STRING, 0), |
434 | 0 | ASN1_EXP_OPT(CMS_SharedInfo, suppPubInfo, ASN1_OCTET_STRING, 2), |
435 | 0 | } static_ASN1_SEQUENCE_END(CMS_SharedInfo) |
436 | 0 |
|
437 | 0 | int CMS_SharedInfo_encode(unsigned char **pder, X509_ALGOR *kekalg, ASN1_OCTET_STRING *ukm, int keylen) |
438 | 0 | { |
439 | 0 | union { |
440 | 0 | CMS_SharedInfo *pecsi; |
441 | 0 | ASN1_VALUE *a; |
442 | 0 | } intsi = { |
443 | 0 | NULL |
444 | 0 | }; |
445 | |
|
446 | 0 | ASN1_OCTET_STRING oklen; |
447 | 0 | unsigned char kl[4]; |
448 | 0 | CMS_SharedInfo ecsi; |
449 | |
|
450 | 0 | keylen <<= 3; |
451 | 0 | kl[0] = (keylen >> 24) & 0xff; |
452 | 0 | kl[1] = (keylen >> 16) & 0xff; |
453 | 0 | kl[2] = (keylen >> 8) & 0xff; |
454 | 0 | kl[3] = keylen & 0xff; |
455 | 0 | oklen.length = 4; |
456 | 0 | oklen.data = kl; |
457 | 0 | oklen.type = V_ASN1_OCTET_STRING; |
458 | 0 | oklen.flags = 0; |
459 | 0 | ecsi.keyInfo = kekalg; |
460 | 0 | ecsi.entityUInfo = ukm; |
461 | 0 | ecsi.suppPubInfo = &oklen; |
462 | 0 | intsi.pecsi = &ecsi; |
463 | 0 | return ASN1_item_i2d(intsi.a, pder, ASN1_ITEM_rptr(CMS_SharedInfo)); |
464 | 0 | } |
465 | | |
466 | | /* |
467 | | * Utilities to encode the CMS_CMSORIforKEMOtherInfo structure used during key |
468 | | * derivation. |
469 | | */ |
470 | | |
471 | | typedef struct { |
472 | | X509_ALGOR *wrap; |
473 | | uint32_t kekLength; |
474 | | ASN1_OCTET_STRING *ukm; |
475 | | } CMS_CMSORIforKEMOtherInfo; |
476 | | |
477 | | ASN1_SEQUENCE(CMS_CMSORIforKEMOtherInfo) = { |
478 | | ASN1_SIMPLE(CMS_CMSORIforKEMOtherInfo, wrap, X509_ALGOR), |
479 | | ASN1_EMBED(CMS_CMSORIforKEMOtherInfo, kekLength, INT32), |
480 | | ASN1_EXP_OPT(CMS_CMSORIforKEMOtherInfo, ukm, ASN1_OCTET_STRING, 0), |
481 | 0 | } static_ASN1_SEQUENCE_END(CMS_CMSORIforKEMOtherInfo) |
482 | 0 |
|
483 | 0 | int CMS_CMSORIforKEMOtherInfo_encode(unsigned char **pder, X509_ALGOR *wrap, ASN1_OCTET_STRING *ukm, int keylen) |
484 | 0 | { |
485 | 0 | CMS_CMSORIforKEMOtherInfo kem_otherinfo; |
486 | |
|
487 | 0 | kem_otherinfo.wrap = wrap; |
488 | 0 | kem_otherinfo.kekLength = keylen; |
489 | 0 | kem_otherinfo.ukm = ukm; |
490 | |
|
491 | 0 | return ASN1_item_i2d((ASN1_VALUE *)&kem_otherinfo, pder, |
492 | 0 | ASN1_ITEM_rptr(CMS_CMSORIforKEMOtherInfo)); |
493 | 0 | } |