Lines Matching refs:is
16 is the compression algorithm to use or B<NID_undef> to use the default
17 algorithm (zlib compression). B<in> is the content to be compressed.
18 B<flags> is an optional set of flags.
20 The only currently supported compression algorithm is zlib using the NID
23 If zlib support is not compiled into OpenSSL then CMS_compress() will return
26 If the B<CMS_TEXT> flag is set MIME headers for type B<text/plain> are
29 Normally the supplied content is translated into MIME canonical format (as
30 required by the S/MIME specifications) if B<CMS_BINARY> is set no translation
31 occurs. This option should be used if the supplied data is in binary format
32 otherwise the translation will corrupt it. If B<CMS_BINARY> is set then
33 B<CMS_TEXT> is ignored.
35 If the B<CMS_STREAM> flag is set a partial B<CMS_ContentInfo> structure is
36 returned suitable for streaming I/O: no data is read from the BIO B<in>.
38 The compressed data is included in the CMS_ContentInfo structure, unless
39 B<CMS_DETACHED> is set in which case it is omitted. This is rarely used in
40 practice and is not supported by SMIME_write_CMS().
42 If the flag B<CMS_STREAM> is set the returned B<CMS_ContentInfo> structure is