Searched refs:CMS_STREAM (Results 1 – 20 of 20) sorted by relevance
/freebsd/crypto/openssl/demos/cms/ |
H A D | cms_sign.c | 28 int flags = CMS_DETACHED | CMS_STREAM; in main() 65 if (!(flags & CMS_STREAM)) in main()
|
H A D | cms_sign2.c | 58 cms = CMS_sign(NULL, NULL, NULL, in, CMS_STREAM | CMS_PARTIAL); in main() 77 if (!SMIME_write_CMS(out, cms, in, CMS_STREAM)) in main()
|
H A D | cms_comp.c | 25 int flags = CMS_STREAM; in main()
|
H A D | cms_enc.c | 27 int flags = CMS_STREAM; in main()
|
H A D | cms_denc.c | 26 int flags = CMS_STREAM | CMS_DETACHED; in main()
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | SMIME_write_CMS.pod | 33 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 D | CMS_compress.pod | 35 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 D | SMIME_write_ASN1.pod | 50 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 D | CMS_data_create.pod | 22 B<CMS_STREAM> flag. Internally CMS_final() is called unless B<CMS_STREAM> is
|
H A D | CMS_digest_create.pod | 25 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 D | CMS_EncryptedData_encrypt.pod | 32 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 D | CMS_encrypt.pod | 58 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 D | CMS_sign.pod | 78 If the flags B<CMS_STREAM> is set then the returned B<CMS_ContentInfo> 88 If the flag B<CMS_STREAM> is set the returned B<CMS_ContentInfo> structure is 128 The B<CMS_STREAM> flag is only supported for detached data in OpenSSL 0.9.8,
|
H A D | CMS_sign_receipt.pod | 28 B<CMS_DETACHED>, B<CMS_BINARY>, B<CMS_NOATTR>, B<CMS_TEXT> and B<CMS_STREAM>
|
H A D | CMS_verify_receipt.pod | 29 B<CMS_DETACHED>, B<CMS_BINARY>, B<CMS_TEXT> and B<CMS_STREAM> are not
|
H A D | BIO_new_CMS.pod | 27 The B<CMS_STREAM> flag must be included in the corresponding B<flags>
|
/freebsd/crypto/openssl/crypto/cms/ |
H A D | cms_smime.c | 129 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() 536 if ((flags & (CMS_STREAM | CMS_PARTIAL)) in CMS_sign_ex() 567 flags &= ~(CMS_STREAM | CMS_TEXT); in CMS_sign_receipt() 654 if ((flags & (CMS_STREAM | CMS_PARTIAL)) in CMS_encrypt_ex() 956 if ((flags & CMS_STREAM) || CMS_final(cms, in, NULL, flags)) in CMS_compress()
|
/freebsd/crypto/openssl/apps/ |
H A D | cms.c | 440 flags |= CMS_STREAM; in cms_main() 443 flags &= ~CMS_STREAM; in cms_main() 1025 if (!(flags & CMS_STREAM)) { in cms_main() 1063 flags |= CMS_STREAM; in cms_main() 1122 if ((operation == SMIME_SIGN) && !(flags & CMS_STREAM)) { in cms_main()
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | cms.h.in | 85 # define CMS_STREAM 0x1000 macro
|
H A D | cms.h | 183 # define CMS_STREAM 0x1000 macro
|