OpenSSL: update to 1.0.1m
[tomato.git] / release / src / router / openssl / doc / crypto / d2i_CMS_ContentInfo.pod
blob6ddb2f6d0583146a48625f27d677756a4c7aa436
1 =pod
3 =head1 NAME
5 d2i_CMS_ContentInfo, i2d_CMS_ContentInfo - CMS ContentInfo functions
7 =head1 SYNOPSIS
9  #include <openssl/cms.h>
11  CMS_ContentInfo *d2i_CMS_ContentInfo(CMS_ContentInfo **a, unsigned char **pp, long length);
12  int i2d_CMS_ContentInfo(CMS_ContentInfo *a, unsigned char **pp);
14 =head1 DESCRIPTION
16 These functions decode and encode an CMS ContentInfo structure.
18 Otherwise they behave in a similar way to d2i_X509() and i2d_X509()
19 described in the L<d2i_X509(3)|d2i_X509(3)> manual page.
21 =head1 SEE ALSO
23 L<d2i_X509(3)|d2i_X509(3)>
25 =head1 HISTORY
27 These functions were first added to OpenSSL 0.9.8
29 =cut