pk7_mime.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Copyright 1999-2017 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 = 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_with_libctx(bio, (ASN1_VALUE *)p7, data, flags,
  36. ctype_nid, NID_undef, mdalgs,
  37. ASN1_ITEM_rptr(PKCS7),
  38. pkcs7_ctx_get0_libctx(ctx),
  39. pkcs7_ctx_get0_propq(ctx));
  40. }
  41. PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7)
  42. {
  43. PKCS7 *ret;
  44. ret = (PKCS7 *)SMIME_read_ASN1_ex(bio, bcont, ASN1_ITEM_rptr(PKCS7),
  45. (ASN1_VALUE **)p7);
  46. if (ret != NULL && p7 != NULL)
  47. pkcs7_resolve_libctx(ret);
  48. return ret;
  49. }
  50. PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont)
  51. {
  52. return SMIME_read_PKCS7_ex(bio, bcont, NULL);
  53. }