Searched refs:bcont (Results 1 – 9 of 9) sorted by relevance
/third_party/openssl/doc/man3/ |
D | SMIME_read_CMS.pod | 11 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
|
D | SMIME_read_PKCS7.pod | 11 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/ |
D | pk7_mime.c | 45 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/ |
D | cms_io.c | 83 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/ |
D | asn_mime.c | 378 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/ |
D | pkcs7.h | 312 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont);
|
D | cms.h | 97 CMS_ContentInfo *SMIME_read_CMS(BIO *bio, BIO **bcont);
|
D | asn1.h | 876 ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it);
|
/third_party/python/Lib/idlelib/ |
D | debugger.py | 143 self.bcont = b = Button(bframe, text="Go", command=self.cont)
|