Home
last modified time | relevance | path

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

/freebsd-12-stable/crypto/openssl/doc/man3/
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
DCMS_compress.pod37 If the B<CMS_STREAM> flag is set a partial B<CMS_ContentInfo> structure is
46 If the flag B<CMS_STREAM> is set the returned B<CMS_ContentInfo> structure is
70 The B<CMS_STREAM> flag was added in OpenSSL 1.0.0.
DCMS_encrypt.pod52 If the B<CMS_STREAM> flag is set a partial B<CMS_ContentInfo> structure is
65 If the flag B<CMS_STREAM> is set the returned B<CMS_ContentInfo> structure is
93 The B<CMS_STREAM> flag was first supported in OpenSSL 1.0.0.
DCMS_sign.pod68 If the flags B<CMS_STREAM> is set then the returned B<CMS_ContentInfo>
78 If the flag B<CMS_STREAM> is set the returned B<CMS_ContentInfo> structure is
117 The B<CMS_STREAM> flag is only supported for detached data in OpenSSL 0.9.8,
DCMS_verify_receipt.pod29 B<CMS_DETACHED>, B<CMS_BINARY>, B<CMS_TEXT> and B<CMS_STREAM> are not
DCMS_sign_receipt.pod28 B<CMS_DETACHED>, B<CMS_BINARY>, B<CMS_NOATTR>, B<CMS_TEXT> and B<CMS_STREAM>
DBIO_new_CMS.pod27 The B<CMS_STREAM> flag must be included in the corresponding B<flags>
/freebsd-12-stable/crypto/openssl/crypto/cms/
Dcms_smime.c125 if ((flags & CMS_STREAM) || CMS_final(cms, in, NULL, flags)) in CMS_data_create()
169 if ((flags & CMS_STREAM) || CMS_final(cms, in, NULL, flags)) in CMS_digest_create()
219 if ((flags & (CMS_STREAM | CMS_PARTIAL)) in CMS_EncryptedData_encrypt()
465 if ((flags & (CMS_STREAM | CMS_PARTIAL)) in CMS_sign()
489 flags &= ~(CMS_STREAM | CMS_TEXT); in CMS_sign_receipt()
567 if ((flags & (CMS_STREAM | CMS_PARTIAL)) in CMS_encrypt()
826 if ((flags & CMS_STREAM) || CMS_final(cms, in, NULL, flags)) in CMS_compress()
/freebsd-12-stable/crypto/openssl/apps/
Dcms.c342 flags |= CMS_STREAM; in cms_main()
345 flags &= ~CMS_STREAM; in cms_main()
869 if (!(flags & CMS_STREAM)) { in cms_main()
900 flags |= CMS_STREAM; in cms_main()
960 if ((operation == SMIME_SIGN) && !(flags & CMS_STREAM)) { in cms_main()
/freebsd-12-stable/crypto/openssl/include/openssl/
Dcms.h68 # define CMS_STREAM 0x1000 macro