Searched refs:dcont (Results 1 – 6 of 6) sorted by relevance
/third_party/openssl/crypto/cms/ |
D | cms_smime.c | 133 int CMS_digest_verify(CMS_ContentInfo *cms, BIO *dcont, BIO *out, in CMS_digest_verify() argument 143 if (!dcont && !check_content(cms)) in CMS_digest_verify() 146 cont = CMS_dataInit(cms, dcont); in CMS_digest_verify() 152 do_free_upto(cont, dcont); in CMS_digest_verify() 178 BIO *dcont, BIO *out, unsigned int flags) in CMS_EncryptedData_decrypt() argument 188 if (!dcont && !check_content(cms)) in CMS_EncryptedData_decrypt() 193 cont = CMS_dataInit(cms, dcont); in CMS_EncryptedData_decrypt() 197 do_free_upto(cont, dcont); in CMS_EncryptedData_decrypt() 266 X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags) in CMS_verify() argument 276 if (!dcont && !check_content(cms)) in CMS_verify() [all …]
|
/third_party/openssl/demos/cms/ |
D | cms_ddec.c | 20 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/include/openssl/ |
D | cms.h | 100 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/ |
D | CMS_final.pod | 11 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
|
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
|
D | CMS_decrypt.pod | 12 BIO *dcont, BIO *out, unsigned int flags); 21 The B<dcont> parameter is used in the rare case where the encrypted content
|