CMS_get0_type.pod 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. =pod
  2. =head1 NAME
  3. CMS_get0_type, CMS_set1_eContentType, CMS_get0_eContentType, CMS_get0_content - get and set CMS content types and content
  4. =head1 SYNOPSIS
  5. #include <openssl/cms.h>
  6. const ASN1_OBJECT *CMS_get0_type(const CMS_ContentInfo *cms);
  7. int CMS_set1_eContentType(CMS_ContentInfo *cms, const ASN1_OBJECT *oid);
  8. const ASN1_OBJECT *CMS_get0_eContentType(CMS_ContentInfo *cms);
  9. ASN1_OCTET_STRING **CMS_get0_content(CMS_ContentInfo *cms);
  10. =head1 DESCRIPTION
  11. CMS_get0_type() returns the content type of a CMS_ContentInfo structure as
  12. and ASN1_OBJECT pointer. An application can then decide how to process the
  13. CMS_ContentInfo structure based on this value.
  14. CMS_set1_eContentType() sets the embedded content type of a CMS_ContentInfo
  15. structure. It should be called with CMS functions with the B<CMS_PARTIAL>
  16. flag and B<before> the structure is finalised, otherwise the results are
  17. undefined.
  18. ASN1_OBJECT *CMS_get0_eContentType() returns a pointer to the embedded
  19. content type.
  20. CMS_get0_content() returns a pointer to the B<ASN1_OCTET_STRING> pointer
  21. containing the embedded content.
  22. =head1 NOTES
  23. As the B<0> implies CMS_get0_type(), CMS_get0_eContentType() and
  24. CMS_get0_content() return internal pointers which should B<not> be freed up.
  25. CMS_set1_eContentType() copies the supplied OID and it B<should> be freed up
  26. after use.
  27. The B<ASN1_OBJECT> values returned can be converted to an integer B<NID> value
  28. using OBJ_obj2nid(). For the currently supported content types the following
  29. values are returned:
  30. NID_pkcs7_data
  31. NID_pkcs7_signed
  32. NID_pkcs7_digest
  33. NID_id_smime_ct_compressedData:
  34. NID_pkcs7_encrypted
  35. NID_pkcs7_enveloped
  36. The return value of CMS_get0_content() is a pointer to the B<ASN1_OCTET_STRING>
  37. content pointer. That means that for example:
  38. ASN1_OCTET_STRING **pconf = CMS_get0_content(cms);
  39. B<*pconf> could be NULL if there is no embedded content. Applications can
  40. access, modify or create the embedded content in a B<CMS_ContentInfo> structure
  41. using this function. Applications usually will not need to modify the
  42. embedded content as it is normally set by higher level functions.
  43. =head1 RETURN VALUES
  44. CMS_get0_type() and CMS_get0_eContentType() return and ASN1_OBJECT structure.
  45. CMS_set1_eContentType() returns 1 for success or 0 if an error occurred. The
  46. error can be obtained from ERR_get_error(3).
  47. =head1 SEE ALSO
  48. L<ERR_get_error(3)>
  49. =head1 COPYRIGHT
  50. Copyright 2008-2016 The OpenSSL Project Authors. All Rights Reserved.
  51. Licensed under the OpenSSL license (the "License"). You may not use
  52. this file except in compliance with the License. You can obtain a copy
  53. in the file LICENSE in the source distribution or at
  54. L<https://www.openssl.org/source/license.html>.
  55. =cut