cms_asn1.c 18 KB

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