pk7_mime.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Copyright 1999-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 <stdio.h>
  10. #include "internal/cryptlib.h"
  11. #include <openssl/x509.h>
  12. #include <openssl/asn1.h>
  13. #include "pk7_local.h"
  14. /* PKCS#7 wrappers round generalised stream and MIME routines */
  15. int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags)
  16. {
  17. return i2d_ASN1_bio_stream(out, (ASN1_VALUE *)p7, in, flags,
  18. ASN1_ITEM_rptr(PKCS7));
  19. }
  20. int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags)
  21. {
  22. return PEM_write_bio_ASN1_stream(out, (ASN1_VALUE *)p7, in, flags,
  23. "PKCS7", ASN1_ITEM_rptr(PKCS7));
  24. }
  25. int SMIME_write_PKCS7(BIO *bio, PKCS7 *p7, BIO *data, int flags)
  26. {
  27. STACK_OF(X509_ALGOR) *mdalgs;
  28. int ctype_nid = OBJ_obj2nid(p7->type);
  29. const PKCS7_CTX *ctx = ossl_pkcs7_get0_ctx(p7);
  30. if (ctype_nid == NID_pkcs7_signed)
  31. mdalgs = p7->d.sign->md_algs;
  32. else
  33. mdalgs = NULL;
  34. flags ^= SMIME_OLDMIME;
  35. return SMIME_write_ASN1_ex(bio, (ASN1_VALUE *)p7, data, flags, ctype_nid,
  36. NID_undef, mdalgs, ASN1_ITEM_rptr(PKCS7),
  37. ossl_pkcs7_ctx_get0_libctx(ctx),
  38. ossl_pkcs7_ctx_get0_propq(ctx));
  39. }
  40. PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7)
  41. {
  42. PKCS7 *ret;
  43. OSSL_LIB_CTX *libctx = NULL;
  44. const char *propq = NULL;
  45. if (p7 != NULL && *p7 != NULL) {
  46. libctx = (*p7)->ctx.libctx;
  47. propq = (*p7)->ctx.propq;
  48. }
  49. ret = (PKCS7 *)SMIME_read_ASN1_ex(bio, 0, bcont, ASN1_ITEM_rptr(PKCS7),
  50. (ASN1_VALUE **)p7, libctx, propq);
  51. if (ret != NULL)
  52. ossl_pkcs7_resolve_libctx(ret);
  53. return ret;
  54. }
  55. PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont)
  56. {
  57. return SMIME_read_PKCS7_ex(bio, bcont, NULL);
  58. }