Home
last modified time | relevance | path

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

/third_party/openssl/doc/man3/
DSMIME_read_CMS.pod11 CMS_ContentInfo *SMIME_read_CMS(BIO *in, BIO **bcont);
20 written to B<*bcont>, otherwise B<*bcont> is set to NULL.
27 If B<*bcont> is not NULL then the message is clear text signed. B<*bcont> can
33 To support future functionality if B<bcont> is not NULL B<*bcont> should be
DSMIME_read_PKCS7.pod11 PKCS7 *SMIME_read_PKCS7(BIO *in, BIO **bcont);
20 a memory bio which is written to B<*bcont>, otherwise
21 B<*bcont> is set to B<NULL>.
28 If B<*bcont> is not B<NULL> then the message is clear text
29 signed. B<*bcont> can then be passed to PKCS7_verify() with
35 To support future functionality if B<bcont> is not B<NULL>
36 B<*bcont> should be initialized to B<NULL>. For example:
/third_party/openssl/crypto/pkcs7/
Dpk7_mime.c45 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont) in SMIME_read_PKCS7() argument
47 return (PKCS7 *)SMIME_read_ASN1(bio, bcont, ASN1_ITEM_rptr(PKCS7)); in SMIME_read_PKCS7()
/third_party/openssl/crypto/cms/
Dcms_io.c83 CMS_ContentInfo *SMIME_read_CMS(BIO *bio, BIO **bcont) in SMIME_read_CMS() argument
85 return (CMS_ContentInfo *)SMIME_read_ASN1(bio, bcont, in SMIME_read_CMS()
/third_party/openssl/crypto/asn1/
Dasn_mime.c378 ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it) in SMIME_read_ASN1() argument
388 if (bcont) in SMIME_read_ASN1()
389 *bcont = NULL; in SMIME_read_ASN1()
456 if (bcont) { in SMIME_read_ASN1()
457 *bcont = sk_BIO_value(parts, 0); in SMIME_read_ASN1()
/third_party/openssl/include/openssl/
Dpkcs7.h312 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont);
Dcms.h97 CMS_ContentInfo *SMIME_read_CMS(BIO *bio, BIO **bcont);
Dasn1.h876 ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it);
/third_party/python/Lib/idlelib/
Ddebugger.py143 self.bcont = b = Button(bframe, text="Go", command=self.cont)