Home
last modified time | relevance | path

Searched refs:CMS_STREAM (Results 1 – 20 of 20) sorted by relevance

/src/crypto/openssl/demos/cms/
H A Dcms_sign.c28 int flags = CMS_DETACHED | CMS_STREAM; in main()
66 if (!(flags & CMS_STREAM)) { in main()
H A Dcms_sign2.c60 cms = CMS_sign(NULL, NULL, NULL, in, CMS_STREAM | CMS_PARTIAL); in main()
79 if (!SMIME_write_CMS(out, cms, in, CMS_STREAM)) in main()
H A Dcms_comp.c25 int flags = CMS_STREAM; in main()
H A Dcms_enc.c27 int flags = CMS_STREAM; in main()
H A Dcms_denc.c26 int flags = CMS_STREAM | CMS_DETACHED; in main()
/src/crypto/openssl/doc/man3/
H A DSMIME_write_CMS.pod33 If the B<CMS_STREAM> flag is set streaming is performed. This flag should only
34 be set if B<CMS_STREAM> was also set in the previous call to a CMS_ContentInfo
37 If cleartext signing is being used and B<CMS_STREAM> not set then the data must
H A DCMS_compress.pod35 If the B<CMS_STREAM> flag is set a partial B<CMS_ContentInfo> structure is
42 If the flag B<CMS_STREAM> is set the returned B<CMS_ContentInfo> structure is
66 The B<CMS_STREAM> flag was added in OpenSSL 1.0.0.
H A DSMIME_write_ASN1.pod50 If the B<CMS_STREAM> flag is set streaming is performed. This flag should only
51 be set if B<CMS_STREAM> was also set in the previous call to a CMS_ContentInfo
54 If cleartext signing is being used and B<CMS_STREAM> not set then the data must
H A DCMS_data_create.pod22 B<CMS_STREAM> flag. Internally CMS_final() is called unless B<CMS_STREAM> is
H A DCMS_digest_create.pod25 The I<flags> field supports the B<CMS_DETACHED> and B<CMS_STREAM> flags,
26 Internally CMS_final() is called unless B<CMS_STREAM> is specified.
H A DCMS_EncryptedData_encrypt.pod32 The I<flags> field supports the options B<CMS_DETACHED>, B<CMS_STREAM> and
33 B<CMS_PARTIAL>. Internally CMS_final() is called unless B<CMS_STREAM> and/or
H A DCMS_encrypt.pod58 If the B<CMS_STREAM> flag is set a partial B<CMS_ContentInfo> structure is
69 If the flag B<CMS_STREAM> is set the returned B<CMS_ContentInfo> structure is
103 The B<CMS_STREAM> flag was first supported in OpenSSL 1.0.0.
H A DCMS_sign.pod79 If the flags B<CMS_STREAM> is set then the returned B<CMS_ContentInfo>
89 If the flag B<CMS_STREAM> is set the returned B<CMS_ContentInfo> structure is
129 The B<CMS_STREAM> flag is only supported for detached data in OpenSSL 0.9.8,
H A DCMS_verify_receipt.pod29 B<CMS_DETACHED>, B<CMS_BINARY>, B<CMS_TEXT> and B<CMS_STREAM> are not
H A DCMS_sign_receipt.pod28 B<CMS_DETACHED>, B<CMS_BINARY>, B<CMS_NOATTR>, B<CMS_TEXT> and B<CMS_STREAM>
H A DBIO_new_CMS.pod27 The B<CMS_STREAM> flag must be included in the corresponding B<flags>
/src/crypto/openssl/crypto/cms/
H A Dcms_smime.c129 if ((flags & CMS_STREAM) || CMS_final(cms, in, NULL, flags)) in CMS_data_create_ex()
185 if ((flags & CMS_STREAM) || CMS_final(cms, in, NULL, flags)) in CMS_digest_create_ex()
244 if ((flags & (CMS_STREAM | CMS_PARTIAL)) in CMS_EncryptedData_encrypt_ex()
546 if ((flags & (CMS_STREAM | CMS_PARTIAL)) in CMS_sign_ex()
574 flags &= ~(CMS_STREAM | CMS_TEXT); in CMS_sign_receipt()
661 if ((flags & (CMS_STREAM | CMS_PARTIAL)) in CMS_encrypt_ex()
983 if ((flags & CMS_STREAM) || CMS_final(cms, in, NULL, flags)) in CMS_compress()
/src/crypto/openssl/apps/
H A Dcms.c517 flags |= CMS_STREAM; in cms_main()
520 flags &= ~CMS_STREAM; in cms_main()
975 || (flags & CMS_STREAM) != 0) { in cms_main()
1119 if (!(flags & CMS_STREAM)) { in cms_main()
1157 flags |= CMS_STREAM; in cms_main()
1217 && (flags & CMS_STREAM) == 0) { in cms_main()
1221 } else if (operation == SMIME_SIGN && (flags & CMS_STREAM) == 0) { in cms_main()
/src/crypto/openssl/include/openssl/
H A Dcms.h.in95 #define CMS_STREAM 0x1000 macro
H A Dcms.h193 #define CMS_STREAM 0x1000 macro