Searched refs:dcont (Results 1 – 7 of 7) sorted by relevance
/openssl/crypto/cms/ |
H A D | cms_smime.c | 156 cont = CMS_dataInit(cms, dcont); in CMS_digest_verify() 163 do_free_upto(cont, dcont); in CMS_digest_verify() 220 do_free_upto(cont, dcont); in CMS_EncryptedData_decrypt() 410 if (dcont != NULL && (BIO_method_type(dcont) == BIO_TYPE_MEM)) { in CMS_verify() 421 tmpin = dcont; in CMS_verify() 476 if (tmpin != dcont) in CMS_verify() 479 if (dcont && (tmpin == dcont)) in CMS_verify() 896 do_free_upto(cont, dcont); in CMS_decrypt() 924 do_free_upto(cmsbio, dcont); in CMS_final() 951 do_free_upto(cmsbio, dcont); in CMS_final_digest() [all …]
|
/openssl/demos/cms/ |
H A D | cms_ddec.c | 20 BIO *in = NULL, *out = NULL, *tbio = NULL, *dcont = NULL; in main() local 59 dcont = BIO_new_file("smencr.out", "rb"); in main() 69 if (!CMS_decrypt(cms, rkey, rcert, dcont, out, 0)) in main() 87 BIO_free(dcont); in main()
|
/openssl/doc/man3/ |
H A D | CMS_final.pod | 11 int CMS_final(CMS_ContentInfo *cms, BIO *data, BIO *dcont, unsigned int flags); 13 unsigned int mdlen, BIO *dcont, unsigned int flags); 20 processed. The B<dcont> parameter contains a BIO to write content to after
|
H A D | CMS_EncryptedData_decrypt.pod | 14 BIO *dcont, BIO *out, unsigned int flags); 26 I<dcont> is used in the rare case where the encrypted content is detached. It 40 The optional parameters I<flags> and I<dcont> are used as described above.
|
H A D | CMS_decrypt.pod | 14 BIO *dcont, BIO *out, unsigned int flags); 33 provides the content unless I<cert>, I<dcont>, and I<out> are NULL as well. 34 The I<dcont> parameter is used in the rare case where the encrypted content 41 should be followed by C<CMS_decrypt(cms, NULL, NULL, dcont, out, flags)>. 50 should be followed by C<CMS_decrypt(cms, NULL, NULL, dcont, out, flags)>.
|
H A D | CMS_uncompress.pod | 11 int CMS_uncompress(CMS_ContentInfo *cms, BIO *dcont, BIO *out, unsigned int flags); 19 The B<dcont> parameter is used in the rare case where the compressed content
|
/openssl/include/openssl/ |
H A D | cms.h.in | 124 int CMS_final(CMS_ContentInfo *cms, BIO *data, BIO *dcont, 127 const unsigned char *md, unsigned int mdlen, BIO *dcont, 147 int CMS_digest_verify(CMS_ContentInfo *cms, BIO *dcont, BIO *out, 157 BIO *dcont, BIO *out, unsigned int flags); 171 X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags); 186 BIO *dcont, BIO *out, unsigned int flags); 261 int CMS_uncompress(CMS_ContentInfo *cms, BIO *dcont, BIO *out,
|
Completed in 22 milliseconds