/third_party/openssl/doc/man3/ |
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:
|
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
|
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
|
/third_party/node/deps/openssl/openssl/crypto/pkcs7/ |
D | pk7_mime.c | 49 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7) in SMIME_read_PKCS7_ex() argument 60 ret = (PKCS7 *)SMIME_read_ASN1_ex(bio, 0, bcont, ASN1_ITEM_rptr(PKCS7), in SMIME_read_PKCS7_ex() 67 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont) in SMIME_read_PKCS7() argument 69 return SMIME_read_PKCS7_ex(bio, bcont, NULL); in SMIME_read_PKCS7()
|
/third_party/openssl/crypto/pkcs7/ |
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()
|
/third_party/node/deps/openssl/openssl/crypto/cms/ |
D | cms_io.c | 99 CMS_ContentInfo *SMIME_read_CMS_ex(BIO *bio, int flags, BIO **bcont, in SMIME_read_CMS_ex() argument 105 ci = (CMS_ContentInfo *)SMIME_read_ASN1_ex(bio, flags, bcont, in SMIME_read_CMS_ex() 118 CMS_ContentInfo *SMIME_read_CMS(BIO *bio, BIO **bcont) in SMIME_read_CMS() argument 120 return SMIME_read_CMS_ex(bio, 0, bcont, NULL); in SMIME_read_CMS()
|
/third_party/openssl/crypto/cms/ |
D | cms_io.c | 99 CMS_ContentInfo *SMIME_read_CMS_ex(BIO *bio, int flags, BIO **bcont, in SMIME_read_CMS_ex() argument 105 ci = (CMS_ContentInfo *)SMIME_read_ASN1_ex(bio, flags, bcont, in SMIME_read_CMS_ex() 118 CMS_ContentInfo *SMIME_read_CMS(BIO *bio, BIO **bcont) in SMIME_read_CMS() argument 120 return SMIME_read_CMS_ex(bio, 0, bcont, NULL); in SMIME_read_CMS()
|
/third_party/node/deps/openssl/openssl/crypto/asn1/ |
D | asn_mime.c | 397 ASN1_VALUE *SMIME_read_ASN1_ex(BIO *bio, int flags, BIO **bcont, in SMIME_read_ASN1_ex() argument 409 if (bcont) in SMIME_read_ASN1_ex() 410 *bcont = NULL; in SMIME_read_ASN1_ex() 477 if (bcont) { in SMIME_read_ASN1_ex() 478 *bcont = sk_BIO_value(parts, 0); in SMIME_read_ASN1_ex() 506 ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it) in SMIME_read_ASN1() argument 508 return SMIME_read_ASN1_ex(bio, 0, bcont, it, NULL, NULL, NULL); in SMIME_read_ASN1()
|
/third_party/openssl/crypto/asn1/ |
D | asn_mime.c | 397 ASN1_VALUE *SMIME_read_ASN1_ex(BIO *bio, int flags, BIO **bcont, in SMIME_read_ASN1_ex() argument 409 if (bcont) in SMIME_read_ASN1_ex() 410 *bcont = NULL; in SMIME_read_ASN1_ex() 477 if (bcont) { in SMIME_read_ASN1_ex() 478 *bcont = sk_BIO_value(parts, 0); in SMIME_read_ASN1_ex() 506 ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it) in SMIME_read_ASN1() argument 508 return SMIME_read_ASN1_ex(bio, 0, bcont, it, NULL, NULL, NULL); in SMIME_read_ASN1()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
D | cms.rs | 27 pub fn SMIME_read_CMS(bio: *mut BIO, bcont: *mut *mut BIO) -> *mut CMS_ContentInfo; in SMIME_read_CMS()
|
D | pkcs7.rs | 207 pub fn SMIME_read_PKCS7(bio: *mut BIO, bcont: *mut *mut BIO) -> *mut PKCS7; in SMIME_read_PKCS7()
|
/third_party/openssl/include/openssl/ |
D | pkcs7.h.in | 348 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7); 349 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont);
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
D | pkcs7.h.in | 348 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7); 349 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont);
|
/third_party/node/deps/openssl/config/archs/solaris-x86-gcc/no-asm/include/openssl/ |
D | pkcs7.h | 419 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7); 420 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont);
|
/third_party/node/deps/openssl/config/archs/VC-WIN32/no-asm/include/openssl/ |
D | pkcs7.h | 419 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7); 420 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont);
|
/third_party/node/deps/openssl/config/archs/linux-x86_64/asm_avx2/include/openssl/ |
D | pkcs7.h | 419 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7); 420 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont);
|
/third_party/node/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/ |
D | pkcs7.h | 419 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7); 420 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont);
|
/third_party/node/deps/openssl/config/archs/linux-x86_64/no-asm/include/openssl/ |
D | pkcs7.h | 419 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7); 420 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont);
|
/third_party/node/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/ |
D | pkcs7.h | 419 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7); 420 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont);
|
/third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/ |
D | pkcs7.h | 419 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7); 420 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont);
|
/third_party/node/deps/openssl/config/archs/VC-WIN32/asm/include/openssl/ |
D | pkcs7.h | 419 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7); 420 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont);
|
/third_party/node/deps/openssl/config/archs/linux32-s390x/asm_avx2/include/openssl/ |
D | pkcs7.h | 419 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7); 420 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont);
|
/third_party/node/deps/openssl/config/archs/linux-elf/asm_avx2/include/openssl/ |
D | pkcs7.h | 419 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7); 420 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont);
|
/third_party/node/deps/openssl/config/archs/linux-ppc64le/asm/include/openssl/ |
D | pkcs7.h | 419 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7); 420 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont);
|
/third_party/node/deps/openssl/config/archs/solaris64-x86_64-gcc/no-asm/include/openssl/ |
D | pkcs7.h | 419 PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7); 420 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont);
|