d2i_CMS_ContentInfo.pod 621 B

1234567891011121314151617181920212223242526272829
  1. =pod
  2. =head1 NAME
  3. d2i_CMS_ContentInfo, i2d_CMS_ContentInfo - CMS ContentInfo functions
  4. =head1 SYNOPSIS
  5. #include <openssl/cms.h>
  6. CMS_ContentInfo *d2i_CMS_ContentInfo(CMS_ContentInfo **a, unsigned char **pp, long length);
  7. int i2d_CMS_ContentInfo(CMS_ContentInfo *a, unsigned char **pp);
  8. =head1 DESCRIPTION
  9. These functions decode and encode an CMS ContentInfo structure.
  10. Otherwise they behave in a similar way to d2i_X509() and i2d_X509()
  11. described in the L<d2i_X509(3)|d2i_X509(3)> manual page.
  12. =head1 SEE ALSO
  13. L<d2i_X509(3)|d2i_X509(3)>
  14. =head1 HISTORY
  15. These functions were first added to OpenSSL 0.9.8
  16. =cut