pk7_mime.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. /* PKCS#7 wrappers round generalised stream and MIME routines */
  14. int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags)
  15. {
  16. return i2d_ASN1_bio_stream(out, (ASN1_VALUE *)p7, in, flags,
  17. ASN1_ITEM_rptr(PKCS7));
  18. }
  19. int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags)
  20. {
  21. return PEM_write_bio_ASN1_stream(out, (ASN1_VALUE *)p7, in, flags,
  22. "PKCS7", ASN1_ITEM_rptr(PKCS7));
  23. }
  24. int SMIME_write_PKCS7(BIO *bio, PKCS7 *p7, BIO *data, int flags)
  25. {
  26. STACK_OF(X509_ALGOR) *mdalgs;
  27. int ctype_nid = OBJ_obj2nid(p7->type);
  28. if (ctype_nid == NID_pkcs7_signed)
  29. mdalgs = p7->d.sign->md_algs;
  30. else
  31. mdalgs = NULL;
  32. flags ^= SMIME_OLDMIME;
  33. return SMIME_write_ASN1(bio, (ASN1_VALUE *)p7, data, flags,
  34. ctype_nid, NID_undef, mdalgs,
  35. ASN1_ITEM_rptr(PKCS7));
  36. }
  37. PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont)
  38. {
  39. return (PKCS7 *)SMIME_read_ASN1(bio, bcont, ASN1_ITEM_rptr(PKCS7));
  40. }