cms_cd.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Copyright 2008-2021 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 "internal/cryptlib.h"
  10. #include <openssl/asn1t.h>
  11. #include <openssl/pem.h>
  12. #include <openssl/x509v3.h>
  13. #include <openssl/err.h>
  14. #include <openssl/cms.h>
  15. #include <openssl/bio.h>
  16. #include <openssl/comp.h>
  17. #include "cms_local.h"
  18. #ifdef ZLIB
  19. /* CMS CompressedData Utilities */
  20. CMS_ContentInfo *ossl_cms_CompressedData_create(int comp_nid,
  21. OSSL_LIB_CTX *libctx,
  22. const char *propq)
  23. {
  24. CMS_ContentInfo *cms;
  25. CMS_CompressedData *cd;
  26. /*
  27. * Will need something cleverer if there is ever more than one
  28. * compression algorithm or parameters have some meaning...
  29. */
  30. if (comp_nid != NID_zlib_compression) {
  31. ERR_raise(ERR_LIB_CMS, CMS_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
  32. return NULL;
  33. }
  34. cms = CMS_ContentInfo_new_ex(libctx, propq);
  35. if (cms == NULL)
  36. return NULL;
  37. cd = M_ASN1_new_of(CMS_CompressedData);
  38. if (cd == NULL)
  39. goto err;
  40. cms->contentType = OBJ_nid2obj(NID_id_smime_ct_compressedData);
  41. cms->d.compressedData = cd;
  42. cd->version = 0;
  43. X509_ALGOR_set0(cd->compressionAlgorithm,
  44. OBJ_nid2obj(NID_zlib_compression), V_ASN1_UNDEF, NULL);
  45. cd->encapContentInfo->eContentType = OBJ_nid2obj(NID_pkcs7_data);
  46. return cms;
  47. err:
  48. CMS_ContentInfo_free(cms);
  49. return NULL;
  50. }
  51. BIO *ossl_cms_CompressedData_init_bio(const CMS_ContentInfo *cms)
  52. {
  53. CMS_CompressedData *cd;
  54. const ASN1_OBJECT *compoid;
  55. if (OBJ_obj2nid(cms->contentType) != NID_id_smime_ct_compressedData) {
  56. ERR_raise(ERR_LIB_CMS, CMS_R_CONTENT_TYPE_NOT_COMPRESSED_DATA);
  57. return NULL;
  58. }
  59. cd = cms->d.compressedData;
  60. X509_ALGOR_get0(&compoid, NULL, NULL, cd->compressionAlgorithm);
  61. if (OBJ_obj2nid(compoid) != NID_zlib_compression) {
  62. ERR_raise(ERR_LIB_CMS, CMS_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
  63. return NULL;
  64. }
  65. return BIO_new(BIO_f_zlib());
  66. }
  67. #endif