Searched refs:bcont (Results 1 – 9 of 9) sorted by relevance
/openssl/doc/man3/ |
H A D | SMIME_read_PKCS7.pod | 11 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7); 12 PKCS7 *SMIME_read_PKCS7(BIO *in, BIO **bcont); 21 a memory bio which is written to B<*bcont>, otherwise 22 B<*bcont> is set to B<NULL>. 34 If B<*bcont> is not B<NULL> then the message is clear text 35 signed. B<*bcont> can then be passed to PKCS7_verify() with 41 To support future functionality if B<bcont> is not B<NULL> 42 B<*bcont> should be initialized to B<NULL>. For example:
|
H A D | SMIME_read_CMS.pod | 11 CMS_ContentInfo *SMIME_read_CMS_ex(BIO *bio, int flags, BIO **bcont, 13 CMS_ContentInfo *SMIME_read_CMS(BIO *in, BIO **bcont); 22 written to B<*bcont>, otherwise B<*bcont> is set to NULL. 38 If B<*bcont> is not NULL then the message is clear text signed. B<*bcont> can 44 To support future functionality if B<bcont> is not NULL B<*bcont> should be
|
H A D | SMIME_read_ASN1.pod | 12 ASN1_VALUE *SMIME_read_ASN1_ex(BIO *in, int flags, BIO **bcont, 15 ASN1_VALUE *SMIME_read_ASN1(BIO *in, BIO **bcont, const ASN1_ITEM *it); 35 written to I<*bcont>, otherwise I<*bcont> is set to NULL. 47 To support future functionality if I<bcont> is not NULL I<*bcont> should be
|
/openssl/crypto/pkcs7/ |
H A D | pk7_mime.c | 52 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7) in SMIME_read_PKCS7_ex() argument 63 ret = (PKCS7 *)SMIME_read_ASN1_ex(bio, 0, bcont, ASN1_ITEM_rptr(PKCS7), in SMIME_read_PKCS7_ex() 70 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont) in SMIME_read_PKCS7() argument 72 return SMIME_read_PKCS7_ex(bio, bcont, NULL); in SMIME_read_PKCS7()
|
/openssl/crypto/cms/ |
H A D | cms_io.c | 100 CMS_ContentInfo *SMIME_read_CMS_ex(BIO *bio, int flags, BIO **bcont, in SMIME_read_CMS_ex() argument 106 ci = (CMS_ContentInfo *)SMIME_read_ASN1_ex(bio, flags, bcont, in SMIME_read_CMS_ex() 119 CMS_ContentInfo *SMIME_read_CMS(BIO *bio, BIO **bcont) in SMIME_read_CMS() argument 121 return SMIME_read_CMS_ex(bio, 0, bcont, NULL); in SMIME_read_CMS()
|
/openssl/crypto/asn1/ |
H A D | asn_mime.c | 399 ASN1_VALUE *SMIME_read_ASN1_ex(BIO *bio, int flags, BIO **bcont, in SMIME_read_ASN1_ex() argument 411 if (bcont) in SMIME_read_ASN1_ex() 412 *bcont = NULL; in SMIME_read_ASN1_ex() 479 if (bcont) { in SMIME_read_ASN1_ex() 480 *bcont = sk_BIO_value(parts, 0); in SMIME_read_ASN1_ex() 508 ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it) in SMIME_read_ASN1() argument 510 return SMIME_read_ASN1_ex(bio, 0, bcont, it, NULL, NULL, NULL); in SMIME_read_ASN1()
|
/openssl/include/openssl/ |
H A D | pkcs7.h.in | 351 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7); 352 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont);
|
H A D | cms.h.in | 120 CMS_ContentInfo *SMIME_read_CMS(BIO *bio, BIO **bcont); 121 CMS_ContentInfo *SMIME_read_CMS_ex(BIO *bio, int flags, BIO **bcont, CMS_ContentInfo **ci);
|
H A D | asn1.h.in | 941 ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it); 942 ASN1_VALUE *SMIME_read_ASN1_ex(BIO *bio, int flags, BIO **bcont,
|
Completed in 19 milliseconds