cms_asn1.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. /* crypto/cms/cms_asn1.c */
  2. /*
  3. * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  4. * project.
  5. */
  6. /* ====================================================================
  7. * Copyright (c) 2008 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
  14. * notice, this list of conditions and the following disclaimer.
  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. #include <openssl/asn1t.h>
  55. #include <openssl/pem.h>
  56. #include <openssl/x509v3.h>
  57. #include "cms.h"
  58. #include "cms_lcl.h"
  59. ASN1_SEQUENCE(CMS_IssuerAndSerialNumber) = {
  60. ASN1_SIMPLE(CMS_IssuerAndSerialNumber, issuer, X509_NAME),
  61. ASN1_SIMPLE(CMS_IssuerAndSerialNumber, serialNumber, ASN1_INTEGER)
  62. } ASN1_SEQUENCE_END(CMS_IssuerAndSerialNumber)
  63. ASN1_SEQUENCE(CMS_OtherCertificateFormat) = {
  64. ASN1_SIMPLE(CMS_OtherCertificateFormat, otherCertFormat, ASN1_OBJECT),
  65. ASN1_OPT(CMS_OtherCertificateFormat, otherCert, ASN1_ANY)
  66. } ASN1_SEQUENCE_END(CMS_OtherCertificateFormat)
  67. ASN1_CHOICE(CMS_CertificateChoices) = {
  68. ASN1_SIMPLE(CMS_CertificateChoices, d.certificate, X509),
  69. ASN1_IMP(CMS_CertificateChoices, d.extendedCertificate, ASN1_SEQUENCE, 0),
  70. ASN1_IMP(CMS_CertificateChoices, d.v1AttrCert, ASN1_SEQUENCE, 1),
  71. ASN1_IMP(CMS_CertificateChoices, d.v2AttrCert, ASN1_SEQUENCE, 2),
  72. ASN1_IMP(CMS_CertificateChoices, d.other, CMS_OtherCertificateFormat, 3)
  73. } ASN1_CHOICE_END(CMS_CertificateChoices)
  74. ASN1_CHOICE(CMS_SignerIdentifier) = {
  75. ASN1_SIMPLE(CMS_SignerIdentifier, d.issuerAndSerialNumber, CMS_IssuerAndSerialNumber),
  76. ASN1_IMP(CMS_SignerIdentifier, d.subjectKeyIdentifier, ASN1_OCTET_STRING, 0)
  77. } ASN1_CHOICE_END(CMS_SignerIdentifier)
  78. ASN1_NDEF_SEQUENCE(CMS_EncapsulatedContentInfo) = {
  79. ASN1_SIMPLE(CMS_EncapsulatedContentInfo, eContentType, ASN1_OBJECT),
  80. ASN1_NDEF_EXP_OPT(CMS_EncapsulatedContentInfo, eContent, ASN1_OCTET_STRING_NDEF, 0)
  81. } ASN1_NDEF_SEQUENCE_END(CMS_EncapsulatedContentInfo)
  82. /* Minor tweak to operation: free up signer key, cert */
  83. static int cms_si_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it)
  84. {
  85. if (operation == ASN1_OP_FREE_POST) {
  86. CMS_SignerInfo *si = (CMS_SignerInfo *)*pval;
  87. if (si->pkey)
  88. EVP_PKEY_free(si->pkey);
  89. if (si->signer)
  90. X509_free(si->signer);
  91. }
  92. return 1;
  93. }
  94. ASN1_SEQUENCE_cb(CMS_SignerInfo, cms_si_cb) = {
  95. ASN1_SIMPLE(CMS_SignerInfo, version, LONG),
  96. ASN1_SIMPLE(CMS_SignerInfo, sid, CMS_SignerIdentifier),
  97. ASN1_SIMPLE(CMS_SignerInfo, digestAlgorithm, X509_ALGOR),
  98. ASN1_IMP_SET_OF_OPT(CMS_SignerInfo, signedAttrs, X509_ATTRIBUTE, 0),
  99. ASN1_SIMPLE(CMS_SignerInfo, signatureAlgorithm, X509_ALGOR),
  100. ASN1_SIMPLE(CMS_SignerInfo, signature, ASN1_OCTET_STRING),
  101. ASN1_IMP_SET_OF_OPT(CMS_SignerInfo, unsignedAttrs, X509_ATTRIBUTE, 1)
  102. } ASN1_SEQUENCE_END_cb(CMS_SignerInfo, CMS_SignerInfo)
  103. ASN1_SEQUENCE(CMS_OtherRevocationInfoFormat) = {
  104. ASN1_SIMPLE(CMS_OtherRevocationInfoFormat, otherRevInfoFormat, ASN1_OBJECT),
  105. ASN1_OPT(CMS_OtherRevocationInfoFormat, otherRevInfo, ASN1_ANY)
  106. } ASN1_SEQUENCE_END(CMS_OtherRevocationInfoFormat)
  107. ASN1_CHOICE(CMS_RevocationInfoChoice) = {
  108. ASN1_SIMPLE(CMS_RevocationInfoChoice, d.crl, X509_CRL),
  109. ASN1_IMP(CMS_RevocationInfoChoice, d.other, CMS_OtherRevocationInfoFormat, 1)
  110. } ASN1_CHOICE_END(CMS_RevocationInfoChoice)
  111. ASN1_NDEF_SEQUENCE(CMS_SignedData) = {
  112. ASN1_SIMPLE(CMS_SignedData, version, LONG),
  113. ASN1_SET_OF(CMS_SignedData, digestAlgorithms, X509_ALGOR),
  114. ASN1_SIMPLE(CMS_SignedData, encapContentInfo, CMS_EncapsulatedContentInfo),
  115. ASN1_IMP_SET_OF_OPT(CMS_SignedData, certificates, CMS_CertificateChoices, 0),
  116. ASN1_IMP_SET_OF_OPT(CMS_SignedData, crls, CMS_RevocationInfoChoice, 1),
  117. ASN1_SET_OF(CMS_SignedData, signerInfos, CMS_SignerInfo)
  118. } ASN1_NDEF_SEQUENCE_END(CMS_SignedData)
  119. ASN1_SEQUENCE(CMS_OriginatorInfo) = {
  120. ASN1_IMP_SET_OF_OPT(CMS_OriginatorInfo, certificates, CMS_CertificateChoices, 0),
  121. ASN1_IMP_SET_OF_OPT(CMS_OriginatorInfo, crls, CMS_RevocationInfoChoice, 1)
  122. } ASN1_SEQUENCE_END(CMS_OriginatorInfo)
  123. ASN1_NDEF_SEQUENCE(CMS_EncryptedContentInfo) = {
  124. ASN1_SIMPLE(CMS_EncryptedContentInfo, contentType, ASN1_OBJECT),
  125. ASN1_SIMPLE(CMS_EncryptedContentInfo, contentEncryptionAlgorithm, X509_ALGOR),
  126. ASN1_IMP_OPT(CMS_EncryptedContentInfo, encryptedContent, ASN1_OCTET_STRING_NDEF, 0)
  127. } ASN1_NDEF_SEQUENCE_END(CMS_EncryptedContentInfo)
  128. ASN1_SEQUENCE(CMS_KeyTransRecipientInfo) = {
  129. ASN1_SIMPLE(CMS_KeyTransRecipientInfo, version, LONG),
  130. ASN1_SIMPLE(CMS_KeyTransRecipientInfo, rid, CMS_SignerIdentifier),
  131. ASN1_SIMPLE(CMS_KeyTransRecipientInfo, keyEncryptionAlgorithm, X509_ALGOR),
  132. ASN1_SIMPLE(CMS_KeyTransRecipientInfo, encryptedKey, ASN1_OCTET_STRING)
  133. } ASN1_SEQUENCE_END(CMS_KeyTransRecipientInfo)
  134. ASN1_SEQUENCE(CMS_OtherKeyAttribute) = {
  135. ASN1_SIMPLE(CMS_OtherKeyAttribute, keyAttrId, ASN1_OBJECT),
  136. ASN1_OPT(CMS_OtherKeyAttribute, keyAttr, ASN1_ANY)
  137. } ASN1_SEQUENCE_END(CMS_OtherKeyAttribute)
  138. ASN1_SEQUENCE(CMS_RecipientKeyIdentifier) = {
  139. ASN1_SIMPLE(CMS_RecipientKeyIdentifier, subjectKeyIdentifier, ASN1_OCTET_STRING),
  140. ASN1_OPT(CMS_RecipientKeyIdentifier, date, ASN1_GENERALIZEDTIME),
  141. ASN1_OPT(CMS_RecipientKeyIdentifier, other, CMS_OtherKeyAttribute)
  142. } ASN1_SEQUENCE_END(CMS_RecipientKeyIdentifier)
  143. ASN1_CHOICE(CMS_KeyAgreeRecipientIdentifier) = {
  144. ASN1_SIMPLE(CMS_KeyAgreeRecipientIdentifier, d.issuerAndSerialNumber, CMS_IssuerAndSerialNumber),
  145. ASN1_IMP(CMS_KeyAgreeRecipientIdentifier, d.rKeyId, CMS_RecipientKeyIdentifier, 0)
  146. } ASN1_CHOICE_END(CMS_KeyAgreeRecipientIdentifier)
  147. ASN1_SEQUENCE(CMS_RecipientEncryptedKey) = {
  148. ASN1_SIMPLE(CMS_RecipientEncryptedKey, rid, CMS_KeyAgreeRecipientIdentifier),
  149. ASN1_SIMPLE(CMS_RecipientEncryptedKey, encryptedKey, ASN1_OCTET_STRING)
  150. } ASN1_SEQUENCE_END(CMS_RecipientEncryptedKey)
  151. ASN1_SEQUENCE(CMS_OriginatorPublicKey) = {
  152. ASN1_SIMPLE(CMS_OriginatorPublicKey, algorithm, X509_ALGOR),
  153. ASN1_SIMPLE(CMS_OriginatorPublicKey, publicKey, ASN1_BIT_STRING)
  154. } ASN1_SEQUENCE_END(CMS_OriginatorPublicKey)
  155. ASN1_CHOICE(CMS_OriginatorIdentifierOrKey) = {
  156. ASN1_SIMPLE(CMS_OriginatorIdentifierOrKey, d.issuerAndSerialNumber, CMS_IssuerAndSerialNumber),
  157. ASN1_IMP(CMS_OriginatorIdentifierOrKey, d.subjectKeyIdentifier, ASN1_OCTET_STRING, 0),
  158. ASN1_IMP(CMS_OriginatorIdentifierOrKey, d.originatorKey, CMS_OriginatorPublicKey, 1)
  159. } ASN1_CHOICE_END(CMS_OriginatorIdentifierOrKey)
  160. ASN1_SEQUENCE(CMS_KeyAgreeRecipientInfo) = {
  161. ASN1_SIMPLE(CMS_KeyAgreeRecipientInfo, version, LONG),
  162. ASN1_EXP(CMS_KeyAgreeRecipientInfo, originator, CMS_OriginatorIdentifierOrKey, 0),
  163. ASN1_EXP_OPT(CMS_KeyAgreeRecipientInfo, ukm, ASN1_OCTET_STRING, 1),
  164. ASN1_SIMPLE(CMS_KeyAgreeRecipientInfo, keyEncryptionAlgorithm, X509_ALGOR),
  165. ASN1_SEQUENCE_OF(CMS_KeyAgreeRecipientInfo, recipientEncryptedKeys, CMS_RecipientEncryptedKey)
  166. } ASN1_SEQUENCE_END(CMS_KeyAgreeRecipientInfo)
  167. ASN1_SEQUENCE(CMS_KEKIdentifier) = {
  168. ASN1_SIMPLE(CMS_KEKIdentifier, keyIdentifier, ASN1_OCTET_STRING),
  169. ASN1_OPT(CMS_KEKIdentifier, date, ASN1_GENERALIZEDTIME),
  170. ASN1_OPT(CMS_KEKIdentifier, other, CMS_OtherKeyAttribute)
  171. } ASN1_SEQUENCE_END(CMS_KEKIdentifier)
  172. ASN1_SEQUENCE(CMS_KEKRecipientInfo) = {
  173. ASN1_SIMPLE(CMS_KEKRecipientInfo, version, LONG),
  174. ASN1_SIMPLE(CMS_KEKRecipientInfo, kekid, CMS_KEKIdentifier),
  175. ASN1_SIMPLE(CMS_KEKRecipientInfo, keyEncryptionAlgorithm, X509_ALGOR),
  176. ASN1_SIMPLE(CMS_KEKRecipientInfo, encryptedKey, ASN1_OCTET_STRING)
  177. } ASN1_SEQUENCE_END(CMS_KEKRecipientInfo)
  178. ASN1_SEQUENCE(CMS_PasswordRecipientInfo) = {
  179. ASN1_SIMPLE(CMS_PasswordRecipientInfo, version, LONG),
  180. ASN1_IMP_OPT(CMS_PasswordRecipientInfo, keyDerivationAlgorithm, X509_ALGOR, 0),
  181. ASN1_SIMPLE(CMS_PasswordRecipientInfo, keyEncryptionAlgorithm, X509_ALGOR),
  182. ASN1_SIMPLE(CMS_PasswordRecipientInfo, encryptedKey, ASN1_OCTET_STRING)
  183. } ASN1_SEQUENCE_END(CMS_PasswordRecipientInfo)
  184. ASN1_SEQUENCE(CMS_OtherRecipientInfo) = {
  185. ASN1_SIMPLE(CMS_OtherRecipientInfo, oriType, ASN1_OBJECT),
  186. ASN1_OPT(CMS_OtherRecipientInfo, oriValue, ASN1_ANY)
  187. } ASN1_SEQUENCE_END(CMS_OtherRecipientInfo)
  188. /* Free up RecipientInfo additional data */
  189. static int cms_ri_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it)
  190. {
  191. if (operation == ASN1_OP_FREE_PRE) {
  192. CMS_RecipientInfo *ri = (CMS_RecipientInfo *)*pval;
  193. if (ri->type == CMS_RECIPINFO_TRANS) {
  194. CMS_KeyTransRecipientInfo *ktri = ri->d.ktri;
  195. if (ktri->pkey)
  196. EVP_PKEY_free(ktri->pkey);
  197. if (ktri->recip)
  198. X509_free(ktri->recip);
  199. } else if (ri->type == CMS_RECIPINFO_KEK) {
  200. CMS_KEKRecipientInfo *kekri = ri->d.kekri;
  201. if (kekri->key) {
  202. OPENSSL_cleanse(kekri->key, kekri->keylen);
  203. OPENSSL_free(kekri->key);
  204. }
  205. }
  206. }
  207. return 1;
  208. }
  209. ASN1_CHOICE_cb(CMS_RecipientInfo, cms_ri_cb) = {
  210. ASN1_SIMPLE(CMS_RecipientInfo, d.ktri, CMS_KeyTransRecipientInfo),
  211. ASN1_IMP(CMS_RecipientInfo, d.kari, CMS_KeyAgreeRecipientInfo, 1),
  212. ASN1_IMP(CMS_RecipientInfo, d.kekri, CMS_KEKRecipientInfo, 2),
  213. ASN1_IMP(CMS_RecipientInfo, d.pwri, CMS_PasswordRecipientInfo, 3),
  214. ASN1_IMP(CMS_RecipientInfo, d.ori, CMS_OtherRecipientInfo, 4)
  215. } ASN1_CHOICE_END_cb(CMS_RecipientInfo, CMS_RecipientInfo, type)
  216. ASN1_NDEF_SEQUENCE(CMS_EnvelopedData) = {
  217. ASN1_SIMPLE(CMS_EnvelopedData, version, LONG),
  218. ASN1_IMP_OPT(CMS_EnvelopedData, originatorInfo, CMS_OriginatorInfo, 0),
  219. ASN1_SET_OF(CMS_EnvelopedData, recipientInfos, CMS_RecipientInfo),
  220. ASN1_SIMPLE(CMS_EnvelopedData, encryptedContentInfo, CMS_EncryptedContentInfo),
  221. ASN1_IMP_SET_OF_OPT(CMS_EnvelopedData, unprotectedAttrs, X509_ATTRIBUTE, 1)
  222. } ASN1_NDEF_SEQUENCE_END(CMS_EnvelopedData)
  223. ASN1_NDEF_SEQUENCE(CMS_DigestedData) = {
  224. ASN1_SIMPLE(CMS_DigestedData, version, LONG),
  225. ASN1_SIMPLE(CMS_DigestedData, digestAlgorithm, X509_ALGOR),
  226. ASN1_SIMPLE(CMS_DigestedData, encapContentInfo, CMS_EncapsulatedContentInfo),
  227. ASN1_SIMPLE(CMS_DigestedData, digest, ASN1_OCTET_STRING)
  228. } ASN1_NDEF_SEQUENCE_END(CMS_DigestedData)
  229. ASN1_NDEF_SEQUENCE(CMS_EncryptedData) = {
  230. ASN1_SIMPLE(CMS_EncryptedData, version, LONG),
  231. ASN1_SIMPLE(CMS_EncryptedData, encryptedContentInfo, CMS_EncryptedContentInfo),
  232. ASN1_IMP_SET_OF_OPT(CMS_EncryptedData, unprotectedAttrs, X509_ATTRIBUTE, 1)
  233. } ASN1_NDEF_SEQUENCE_END(CMS_EncryptedData)
  234. ASN1_NDEF_SEQUENCE(CMS_AuthenticatedData) = {
  235. ASN1_SIMPLE(CMS_AuthenticatedData, version, LONG),
  236. ASN1_IMP_OPT(CMS_AuthenticatedData, originatorInfo, CMS_OriginatorInfo, 0),
  237. ASN1_SET_OF(CMS_AuthenticatedData, recipientInfos, CMS_RecipientInfo),
  238. ASN1_SIMPLE(CMS_AuthenticatedData, macAlgorithm, X509_ALGOR),
  239. ASN1_IMP(CMS_AuthenticatedData, digestAlgorithm, X509_ALGOR, 1),
  240. ASN1_SIMPLE(CMS_AuthenticatedData, encapContentInfo, CMS_EncapsulatedContentInfo),
  241. ASN1_IMP_SET_OF_OPT(CMS_AuthenticatedData, authAttrs, X509_ALGOR, 2),
  242. ASN1_SIMPLE(CMS_AuthenticatedData, mac, ASN1_OCTET_STRING),
  243. ASN1_IMP_SET_OF_OPT(CMS_AuthenticatedData, unauthAttrs, X509_ALGOR, 3)
  244. } ASN1_NDEF_SEQUENCE_END(CMS_AuthenticatedData)
  245. ASN1_NDEF_SEQUENCE(CMS_CompressedData) = {
  246. ASN1_SIMPLE(CMS_CompressedData, version, LONG),
  247. ASN1_SIMPLE(CMS_CompressedData, compressionAlgorithm, X509_ALGOR),
  248. ASN1_SIMPLE(CMS_CompressedData, encapContentInfo, CMS_EncapsulatedContentInfo),
  249. } ASN1_NDEF_SEQUENCE_END(CMS_CompressedData)
  250. /* This is the ANY DEFINED BY table for the top level ContentInfo structure */
  251. ASN1_ADB_TEMPLATE(cms_default) = ASN1_EXP(CMS_ContentInfo, d.other, ASN1_ANY, 0);
  252. ASN1_ADB(CMS_ContentInfo) = {
  253. ADB_ENTRY(NID_pkcs7_data, ASN1_NDEF_EXP(CMS_ContentInfo, d.data, ASN1_OCTET_STRING_NDEF, 0)),
  254. ADB_ENTRY(NID_pkcs7_signed, ASN1_NDEF_EXP(CMS_ContentInfo, d.signedData, CMS_SignedData, 0)),
  255. ADB_ENTRY(NID_pkcs7_enveloped, ASN1_NDEF_EXP(CMS_ContentInfo, d.envelopedData, CMS_EnvelopedData, 0)),
  256. ADB_ENTRY(NID_pkcs7_digest, ASN1_NDEF_EXP(CMS_ContentInfo, d.digestedData, CMS_DigestedData, 0)),
  257. ADB_ENTRY(NID_pkcs7_encrypted, ASN1_NDEF_EXP(CMS_ContentInfo, d.encryptedData, CMS_EncryptedData, 0)),
  258. ADB_ENTRY(NID_id_smime_ct_authData, ASN1_NDEF_EXP(CMS_ContentInfo, d.authenticatedData, CMS_AuthenticatedData, 0)),
  259. ADB_ENTRY(NID_id_smime_ct_compressedData, ASN1_NDEF_EXP(CMS_ContentInfo, d.compressedData, CMS_CompressedData, 0)),
  260. } ASN1_ADB_END(CMS_ContentInfo, 0, contentType, 0, &cms_default_tt, NULL);
  261. ASN1_NDEF_SEQUENCE(CMS_ContentInfo) = {
  262. ASN1_SIMPLE(CMS_ContentInfo, contentType, ASN1_OBJECT),
  263. ASN1_ADB_OBJECT(CMS_ContentInfo)
  264. } ASN1_NDEF_SEQUENCE_END(CMS_ContentInfo)
  265. /* Specials for signed attributes */
  266. /*
  267. * When signing attributes we want to reorder them to match the sorted
  268. * encoding.
  269. */
  270. ASN1_ITEM_TEMPLATE(CMS_Attributes_Sign) =
  271. ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SET_ORDER, 0, CMS_ATTRIBUTES, X509_ATTRIBUTE)
  272. ASN1_ITEM_TEMPLATE_END(CMS_Attributes_Sign)
  273. /*
  274. * When verifying attributes we need to use the received order. So we use
  275. * SEQUENCE OF and tag it to SET OF
  276. */
  277. ASN1_ITEM_TEMPLATE(CMS_Attributes_Verify) =
  278. ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF | ASN1_TFLG_IMPTAG | ASN1_TFLG_UNIVERSAL,
  279. V_ASN1_SET, CMS_ATTRIBUTES, X509_ATTRIBUTE)
  280. ASN1_ITEM_TEMPLATE_END(CMS_Attributes_Verify)
  281. ASN1_CHOICE(CMS_ReceiptsFrom) = {
  282. ASN1_IMP(CMS_ReceiptsFrom, d.allOrFirstTier, LONG, 0),
  283. ASN1_IMP_SEQUENCE_OF(CMS_ReceiptsFrom, d.receiptList, GENERAL_NAMES, 1)
  284. } ASN1_CHOICE_END(CMS_ReceiptsFrom)
  285. ASN1_SEQUENCE(CMS_ReceiptRequest) = {
  286. ASN1_SIMPLE(CMS_ReceiptRequest, signedContentIdentifier, ASN1_OCTET_STRING),
  287. ASN1_SIMPLE(CMS_ReceiptRequest, receiptsFrom, CMS_ReceiptsFrom),
  288. ASN1_SEQUENCE_OF(CMS_ReceiptRequest, receiptsTo, GENERAL_NAMES)
  289. } ASN1_SEQUENCE_END(CMS_ReceiptRequest)
  290. ASN1_SEQUENCE(CMS_Receipt) = {
  291. ASN1_SIMPLE(CMS_Receipt, version, LONG),
  292. ASN1_SIMPLE(CMS_Receipt, contentType, ASN1_OBJECT),
  293. ASN1_SIMPLE(CMS_Receipt, signedContentIdentifier, ASN1_OCTET_STRING),
  294. ASN1_SIMPLE(CMS_Receipt, originatorSignatureValue, ASN1_OCTET_STRING)
  295. } ASN1_SEQUENCE_END(CMS_Receipt)