Home
last modified time | relevance | path

Searched refs:dcont (Results 1 – 9 of 9) sorted by relevance

/third_party/openssl/crypto/cms/
Dcms_smime.c141 int CMS_digest_verify(CMS_ContentInfo *cms, BIO *dcont, BIO *out, in CMS_digest_verify() argument
152 if (dcont == NULL && !check_content(cms)) in CMS_digest_verify()
155 cont = CMS_dataInit(cms, dcont); in CMS_digest_verify()
162 do_free_upto(cont, dcont); in CMS_digest_verify()
200 BIO *dcont, BIO *out, unsigned int flags) in CMS_EncryptedData_decrypt() argument
210 if (dcont == NULL && !check_content(cms)) in CMS_EncryptedData_decrypt()
215 cont = CMS_dataInit(cms, dcont); in CMS_EncryptedData_decrypt()
219 do_free_upto(cont, dcont); in CMS_EncryptedData_decrypt()
305 X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags) in CMS_verify() argument
318 if (dcont == NULL && !check_content(cms)) in CMS_verify()
[all …]
/third_party/openssl/demos/cms/
Dcms_ddec.c20 BIO *in = NULL, *out = NULL, *tbio = NULL, *dcont = NULL; in main() local
58 dcont = BIO_new_file("smencr.out", "rb"); in main()
68 if (!CMS_decrypt(cms, rkey, rcert, dcont, out, 0)) in main()
86 BIO_free(dcont); in main()
/third_party/openssl/ohos_lite/include/openssl/
Dcms.h100 int CMS_final(CMS_ContentInfo *cms, BIO *data, BIO *dcont,
114 int CMS_digest_verify(CMS_ContentInfo *cms, BIO *dcont, BIO *out,
121 BIO *dcont, BIO *out, unsigned int flags);
131 X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags);
143 BIO *dcont, BIO *out, unsigned int flags);
202 int CMS_uncompress(CMS_ContentInfo *cms, BIO *dcont, BIO *out,
/third_party/openssl/doc/man3/
DCMS_final.pod11 int CMS_final(CMS_ContentInfo *cms, BIO *data, BIO *dcont, unsigned int flags);
18 processed. The B<dcont> parameter contains a BIO to write content to after
DCMS_EncryptedData_decrypt.pod14 BIO *dcont, BIO *out, unsigned int flags);
21 I<dcont> is used in the rare case where the encrypted content is detached. It
DCMS_uncompress.pod11 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
DCMS_decrypt.pod13 BIO *dcont, BIO *out, unsigned int flags);
25 The B<dcont> parameter is used in the rare case where the encrypted content
/third_party/openssl/include/openssl/
Dcms.h.in120 int CMS_final(CMS_ContentInfo *cms, BIO *data, BIO *dcont,
140 int CMS_digest_verify(CMS_ContentInfo *cms, BIO *dcont, BIO *out,
150 BIO *dcont, BIO *out, unsigned int flags);
165 X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags);
180 BIO *dcont, BIO *out, unsigned int flags);
251 int CMS_uncompress(CMS_ContentInfo *cms, BIO *dcont, BIO *out,
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
Dcms.rs61 dcont: *mut BIO, in CMS_decrypt()