/third_party/node/deps/openssl/openssl/crypto/pkcs7/ |
H A D | pk7_lib.c | 20 long PKCS7_ctrl(PKCS7 *p7, int cmd, long larg, char *parg) in PKCS7_ctrl() argument 25 nid = OBJ_obj2nid(p7->type); in PKCS7_ctrl() 31 ret = p7->detached = (int)larg; in PKCS7_ctrl() 32 if (ret && PKCS7_type_is_data(p7->d.sign->contents)) { in PKCS7_ctrl() 34 os = p7->d.sign->contents->d.data; in PKCS7_ctrl() 36 p7->d.sign->contents->d.data = NULL; in PKCS7_ctrl() 46 if (p7->d.sign == NULL || p7->d.sign->contents->d.ptr == NULL) in PKCS7_ctrl() 51 p7->detached = ret; in PKCS7_ctrl() 66 int PKCS7_content_new(PKCS7 *p7, in argument 83 PKCS7_set_content(PKCS7 *p7, PKCS7 *p7_data) PKCS7_set_content() argument 110 PKCS7_set_type(PKCS7 *p7, int type) PKCS7_set_type() argument 181 PKCS7_set0_type_other(PKCS7 *p7, int type, ASN1_TYPE *other) PKCS7_set0_type_other() argument 188 PKCS7_add_signer(PKCS7 *p7, PKCS7_SIGNER_INFO *psi) PKCS7_add_signer() argument 251 PKCS7_add_certificate(PKCS7 *p7, X509 *x509) PKCS7_add_certificate() argument 272 PKCS7_add_crl(PKCS7 *p7, X509_CRL *crl) PKCS7_add_crl() argument 387 PKCS7_add_signature(PKCS7 *p7, X509 *x509, EVP_PKEY *pkey, const EVP_MD *dgst) PKCS7_add_signature() argument 441 ossl_pkcs7_resolve_libctx(PKCS7 *p7) ossl_pkcs7_resolve_libctx() argument 475 ossl_pkcs7_get0_ctx(const PKCS7 *p7) ossl_pkcs7_get0_ctx() argument 480 ossl_pkcs7_set0_libctx(PKCS7 *p7, OSSL_LIB_CTX *ctx) ossl_pkcs7_set0_libctx() argument 485 ossl_pkcs7_set1_propq(PKCS7 *p7, const char *propq) ossl_pkcs7_set1_propq() argument 520 PKCS7_set_digest(PKCS7 *p7, const EVP_MD *md) PKCS7_set_digest() argument 565 PKCS7_add_recipient(PKCS7 *p7, X509 *x509) PKCS7_add_recipient() argument 582 PKCS7_add_recipient_info(PKCS7 *p7, PKCS7_RECIP_INFO *ri) PKCS7_add_recipient_info() argument 670 PKCS7_cert_from_signer_info(PKCS7 *p7, PKCS7_SIGNER_INFO *si) PKCS7_cert_from_signer_info() argument 681 PKCS7_set_cipher(PKCS7 *p7, const EVP_CIPHER *cipher) PKCS7_set_cipher() argument 712 PKCS7_stream(unsigned char ***boundary, PKCS7 *p7) PKCS7_stream() argument [all...] |
H A D | pk7_smime.c | 21 static int pkcs7_copy_existing_digest(PKCS7 *p7, PKCS7_SIGNER_INFO *si); 27 PKCS7 *p7; in PKCS7_sign_ex() local 30 if ((p7 = PKCS7_new_ex(libctx, propq)) == NULL) { in PKCS7_sign_ex() 35 if (!PKCS7_set_type(p7, NID_pkcs7_signed)) in PKCS7_sign_ex() 38 if (!PKCS7_content_new(p7, NID_pkcs7_data)) in PKCS7_sign_ex() 41 if (pkey && !PKCS7_sign_add_signer(p7, signcert, pkey, NULL, flags)) { in PKCS7_sign_ex() 48 if (!PKCS7_add_certificate(p7, sk_X509_value(certs, i))) in PKCS7_sign_ex() 54 PKCS7_set_detached(p7, 1); in PKCS7_sign_ex() 57 return p7; in PKCS7_sign_ex() 59 if (PKCS7_final(p7, dat in PKCS7_sign_ex() 74 PKCS7_final(PKCS7 *p7, BIO *data, int flags) PKCS7_final() argument 117 PKCS7_sign_add_signer(PKCS7 *p7, X509 *signcert, EVP_PKEY *pkey, const EVP_MD *md, int flags) PKCS7_sign_add_signer() argument 186 pkcs7_copy_existing_digest(PKCS7 *p7, PKCS7_SIGNER_INFO *si) pkcs7_copy_existing_digest() argument 213 PKCS7_verify(PKCS7 *p7, STACK_OF(X509) *certs, X509_STORE *store, BIO *indata, BIO *out, int flags) PKCS7_verify() argument 449 PKCS7 *p7; STACK_OF() local 495 PKCS7_decrypt(PKCS7 *p7, EVP_PKEY *pkey, X509 *cert, BIO *data, int flags) PKCS7_decrypt() argument [all...] |
H A D | pk7_mime.c | 18 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags) in i2d_PKCS7_bio_stream() argument 20 return i2d_ASN1_bio_stream(out, (ASN1_VALUE *)p7, in, flags, in i2d_PKCS7_bio_stream() 24 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags) in PEM_write_bio_PKCS7_stream() argument 26 return PEM_write_bio_ASN1_stream(out, (ASN1_VALUE *)p7, in, flags, in PEM_write_bio_PKCS7_stream() 30 int SMIME_write_PKCS7(BIO *bio, PKCS7 *p7, BIO *data, int flags) in SMIME_write_PKCS7() argument 33 int ctype_nid = OBJ_obj2nid(p7->type); in SMIME_write_PKCS7() 34 const PKCS7_CTX *ctx = ossl_pkcs7_get0_ctx(p7); in SMIME_write_PKCS7() 37 if (p7->d.sign == NULL) in SMIME_write_PKCS7() 39 mdalgs = p7->d.sign->md_algs; in SMIME_write_PKCS7() 46 return SMIME_write_ASN1_ex(bio, (ASN1_VALUE *)p7, dat in SMIME_write_PKCS7() 52 SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7) SMIME_read_PKCS7_ex() argument [all...] |
H A D | pk7_doit.c | 24 int PKCS7_type_is_other(PKCS7 *p7) 28 int nid = OBJ_obj2nid(p7->type); 47 ASN1_OCTET_STRING *PKCS7_get_octet_string(PKCS7 *p7) in PKCS7_get_octet_string() argument 49 if (PKCS7_type_is_data(p7)) in PKCS7_get_octet_string() 50 return p7->d.data; in PKCS7_get_octet_string() 51 if (PKCS7_type_is_other(p7) && p7->d.other in PKCS7_get_octet_string() 52 && (p7->d.other->type == V_ASN1_OCTET_STRING)) in PKCS7_get_octet_string() 53 return p7->d.other->value.octet_string; in PKCS7_get_octet_string() 207 BIO *PKCS7_dataInit(PKCS7 *p7, BI argument 395 PKCS7_dataDecode(PKCS7 *p7, EVP_PKEY *pkey, BIO *in_bio, X509 *pcert) PKCS7_dataDecode() argument 727 PKCS7_dataFinal(PKCS7 *p7, BIO *bio) PKCS7_dataFinal() argument 960 PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx, BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si) PKCS7_dataVerify() argument 1014 PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si, X509 *x509) PKCS7_signatureVerify() argument 1141 PKCS7_get_issuer_and_serial(PKCS7 *p7, int idx) PKCS7_get_issuer_and_serial() argument [all...] |
/third_party/openssl/crypto/pkcs7/ |
H A D | pk7_lib.c | 20 long PKCS7_ctrl(PKCS7 *p7, int cmd, long larg, char *parg) in PKCS7_ctrl() argument 25 nid = OBJ_obj2nid(p7->type); in PKCS7_ctrl() 31 ret = p7->detached = (int)larg; in PKCS7_ctrl() 32 if (ret && PKCS7_type_is_data(p7->d.sign->contents)) { in PKCS7_ctrl() 34 os = p7->d.sign->contents->d.data; in PKCS7_ctrl() 36 p7->d.sign->contents->d.data = NULL; in PKCS7_ctrl() 46 if (p7->d.sign == NULL || p7->d.sign->contents->d.ptr == NULL) in PKCS7_ctrl() 51 p7->detached = ret; in PKCS7_ctrl() 66 int PKCS7_content_new(PKCS7 *p7, in argument 83 PKCS7_set_content(PKCS7 *p7, PKCS7 *p7_data) PKCS7_set_content() argument 110 PKCS7_set_type(PKCS7 *p7, int type) PKCS7_set_type() argument 181 PKCS7_set0_type_other(PKCS7 *p7, int type, ASN1_TYPE *other) PKCS7_set0_type_other() argument 188 PKCS7_add_signer(PKCS7 *p7, PKCS7_SIGNER_INFO *psi) PKCS7_add_signer() argument 251 PKCS7_add_certificate(PKCS7 *p7, X509 *x509) PKCS7_add_certificate() argument 272 PKCS7_add_crl(PKCS7 *p7, X509_CRL *crl) PKCS7_add_crl() argument 387 PKCS7_add_signature(PKCS7 *p7, X509 *x509, EVP_PKEY *pkey, const EVP_MD *dgst) PKCS7_add_signature() argument 441 ossl_pkcs7_resolve_libctx(PKCS7 *p7) ossl_pkcs7_resolve_libctx() argument 475 ossl_pkcs7_get0_ctx(const PKCS7 *p7) ossl_pkcs7_get0_ctx() argument 480 ossl_pkcs7_set0_libctx(PKCS7 *p7, OSSL_LIB_CTX *ctx) ossl_pkcs7_set0_libctx() argument 485 ossl_pkcs7_set1_propq(PKCS7 *p7, const char *propq) ossl_pkcs7_set1_propq() argument 520 PKCS7_set_digest(PKCS7 *p7, const EVP_MD *md) PKCS7_set_digest() argument 565 PKCS7_add_recipient(PKCS7 *p7, X509 *x509) PKCS7_add_recipient() argument 582 PKCS7_add_recipient_info(PKCS7 *p7, PKCS7_RECIP_INFO *ri) PKCS7_add_recipient_info() argument 670 PKCS7_cert_from_signer_info(PKCS7 *p7, PKCS7_SIGNER_INFO *si) PKCS7_cert_from_signer_info() argument 681 PKCS7_set_cipher(PKCS7 *p7, const EVP_CIPHER *cipher) PKCS7_set_cipher() argument 712 PKCS7_stream(unsigned char ***boundary, PKCS7 *p7) PKCS7_stream() argument [all...] |
H A D | pk7_smime.c | 21 static int pkcs7_copy_existing_digest(PKCS7 *p7, PKCS7_SIGNER_INFO *si); 27 PKCS7 *p7; in PKCS7_sign_ex() local 30 if ((p7 = PKCS7_new_ex(libctx, propq)) == NULL) { in PKCS7_sign_ex() 35 if (!PKCS7_set_type(p7, NID_pkcs7_signed)) in PKCS7_sign_ex() 38 if (!PKCS7_content_new(p7, NID_pkcs7_data)) in PKCS7_sign_ex() 41 if (pkey && !PKCS7_sign_add_signer(p7, signcert, pkey, NULL, flags)) { in PKCS7_sign_ex() 48 if (!PKCS7_add_certificate(p7, sk_X509_value(certs, i))) in PKCS7_sign_ex() 54 PKCS7_set_detached(p7, 1); in PKCS7_sign_ex() 57 return p7; in PKCS7_sign_ex() 59 if (PKCS7_final(p7, dat in PKCS7_sign_ex() 74 PKCS7_final(PKCS7 *p7, BIO *data, int flags) PKCS7_final() argument 117 PKCS7_sign_add_signer(PKCS7 *p7, X509 *signcert, EVP_PKEY *pkey, const EVP_MD *md, int flags) PKCS7_sign_add_signer() argument 186 pkcs7_copy_existing_digest(PKCS7 *p7, PKCS7_SIGNER_INFO *si) pkcs7_copy_existing_digest() argument 213 PKCS7_verify(PKCS7 *p7, STACK_OF(X509) *certs, X509_STORE *store, BIO *indata, BIO *out, int flags) PKCS7_verify() argument 449 PKCS7 *p7; STACK_OF() local 495 PKCS7_decrypt(PKCS7 *p7, EVP_PKEY *pkey, X509 *cert, BIO *data, int flags) PKCS7_decrypt() argument [all...] |
H A D | pk7_mime.c | 18 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags) in i2d_PKCS7_bio_stream() argument 20 return i2d_ASN1_bio_stream(out, (ASN1_VALUE *)p7, in, flags, in i2d_PKCS7_bio_stream() 24 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags) in PEM_write_bio_PKCS7_stream() argument 26 return PEM_write_bio_ASN1_stream(out, (ASN1_VALUE *)p7, in, flags, in PEM_write_bio_PKCS7_stream() 30 int SMIME_write_PKCS7(BIO *bio, PKCS7 *p7, BIO *data, int flags) in SMIME_write_PKCS7() argument 33 int ctype_nid = OBJ_obj2nid(p7->type); in SMIME_write_PKCS7() 34 const PKCS7_CTX *ctx = ossl_pkcs7_get0_ctx(p7); in SMIME_write_PKCS7() 37 if (p7->d.sign == NULL) in SMIME_write_PKCS7() 39 mdalgs = p7->d.sign->md_algs; in SMIME_write_PKCS7() 46 return SMIME_write_ASN1_ex(bio, (ASN1_VALUE *)p7, dat in SMIME_write_PKCS7() 52 SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7) SMIME_read_PKCS7_ex() argument [all...] |
H A D | pk7_doit.c | 24 int PKCS7_type_is_other(PKCS7 *p7) 28 int nid = OBJ_obj2nid(p7->type); 47 ASN1_OCTET_STRING *PKCS7_get_octet_string(PKCS7 *p7) in PKCS7_get_octet_string() argument 49 if (PKCS7_type_is_data(p7)) in PKCS7_get_octet_string() 50 return p7->d.data; in PKCS7_get_octet_string() 51 if (PKCS7_type_is_other(p7) && p7->d.other in PKCS7_get_octet_string() 52 && (p7->d.other->type == V_ASN1_OCTET_STRING)) in PKCS7_get_octet_string() 53 return p7->d.other->value.octet_string; in PKCS7_get_octet_string() 207 BIO *PKCS7_dataInit(PKCS7 *p7, BI argument 395 PKCS7_dataDecode(PKCS7 *p7, EVP_PKEY *pkey, BIO *in_bio, X509 *pcert) PKCS7_dataDecode() argument 727 PKCS7_dataFinal(PKCS7 *p7, BIO *bio) PKCS7_dataFinal() argument 960 PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx, BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si) PKCS7_dataVerify() argument 1014 PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si, X509 *x509) PKCS7_signatureVerify() argument 1141 PKCS7_get_issuer_and_serial(PKCS7 *p7, int idx) PKCS7_get_issuer_and_serial() argument [all...] |
/third_party/node/deps/openssl/openssl/crypto/pkcs12/ |
H A D | p12_add.c | 51 PKCS7 *p7; in STACK_OF() local 53 if ((p7 = PKCS7_new()) == NULL) { in STACK_OF() 57 p7->type = OBJ_nid2obj(NID_pkcs7_data); in STACK_OF() 58 if ((p7->d.data = ASN1_OCTET_STRING_new()) == NULL) { in STACK_OF() 63 if (!ASN1_item_pack(sk, ASN1_ITEM_rptr(PKCS12_SAFEBAGS), &p7->d.data)) { in STACK_OF() 67 return p7; in STACK_OF() 70 PKCS7_free(p7); in STACK_OF() 75 STACK_OF(PKCS12_SAFEBAG) *PKCS12_unpack_p7data(PKCS7 *p7) in STACK_OF() 77 if (!PKCS7_type_is_data(p7)) { in STACK_OF() 82 if (p7 in STACK_OF() 97 PKCS7 *p7; PKCS12_pack_p7encdata_ex() local 196 PKCS7 *p7; STACK_OF() local [all...] |
/third_party/openssl/crypto/pkcs12/ |
H A D | p12_add.c | 51 PKCS7 *p7; in STACK_OF() local 53 if ((p7 = PKCS7_new()) == NULL) { in STACK_OF() 57 p7->type = OBJ_nid2obj(NID_pkcs7_data); in STACK_OF() 58 if ((p7->d.data = ASN1_OCTET_STRING_new()) == NULL) { in STACK_OF() 63 if (!ASN1_item_pack(sk, ASN1_ITEM_rptr(PKCS12_SAFEBAGS), &p7->d.data)) { in STACK_OF() 67 return p7; in STACK_OF() 70 PKCS7_free(p7); in STACK_OF() 75 STACK_OF(PKCS12_SAFEBAG) *PKCS12_unpack_p7data(PKCS7 *p7) in STACK_OF() 77 if (!PKCS7_type_is_data(p7)) { in STACK_OF() 82 if (p7 in STACK_OF() 97 PKCS7 *p7; PKCS12_pack_p7encdata_ex() local 196 PKCS7 *p7; STACK_OF() local [all...] |
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | pkcs7.h | 167 # define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7)) 210 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7); 211 int i2d_PKCS7_fp(FILE *fp, PKCS7 *p7); 213 PKCS7 *PKCS7_dup(PKCS7 *p7); 214 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7); 215 int i2d_PKCS7_bio(BIO *bp, PKCS7 *p7); 216 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 217 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BI 260 STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); global() variable [all...] |
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/ |
H A D | pkcs7.h | 265 # define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7)) 308 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7); 309 int i2d_PKCS7_fp(FILE *fp, const PKCS7 *p7); 312 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7); 313 int i2d_PKCS7_bio(BIO *bp, const PKCS7 *p7); 314 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 315 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 334 long PKCS7_ctrl(PKCS7 *p7, in 360 STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); global() variable [all...] |
/third_party/node/deps/openssl/config/archs/linux-elf/asm/include/openssl/ |
H A D | pkcs7.h | 265 # define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7)) 308 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7); 309 int i2d_PKCS7_fp(FILE *fp, const PKCS7 *p7); 312 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7); 313 int i2d_PKCS7_bio(BIO *bp, const PKCS7 *p7); 314 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 315 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 334 long PKCS7_ctrl(PKCS7 *p7, in 360 STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); global() variable [all...] |
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/ |
H A D | pkcs7.h | 265 # define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7)) 308 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7); 309 int i2d_PKCS7_fp(FILE *fp, const PKCS7 *p7); 312 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7); 313 int i2d_PKCS7_bio(BIO *bp, const PKCS7 *p7); 314 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 315 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 334 long PKCS7_ctrl(PKCS7 *p7, in 360 STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); global() variable [all...] |
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/ |
H A D | pkcs7.h | 265 # define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7)) 308 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7); 309 int i2d_PKCS7_fp(FILE *fp, const PKCS7 *p7); 312 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7); 313 int i2d_PKCS7_bio(BIO *bp, const PKCS7 *p7); 314 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 315 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 334 long PKCS7_ctrl(PKCS7 *p7, in 360 STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); global() variable [all...] |
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/openssl/ |
H A D | pkcs7.h | 265 # define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7)) 308 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7); 309 int i2d_PKCS7_fp(FILE *fp, const PKCS7 *p7); 312 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7); 313 int i2d_PKCS7_bio(BIO *bp, const PKCS7 *p7); 314 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 315 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 334 long PKCS7_ctrl(PKCS7 *p7, in 360 STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); global() variable [all...] |
/third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/ |
H A D | pkcs7.h | 265 # define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7)) 308 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7); 309 int i2d_PKCS7_fp(FILE *fp, const PKCS7 *p7); 312 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7); 313 int i2d_PKCS7_bio(BIO *bp, const PKCS7 *p7); 314 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 315 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 334 long PKCS7_ctrl(PKCS7 *p7, in 360 STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); global() variable [all...] |
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/include/openssl/ |
H A D | pkcs7.h | 265 # define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7)) 308 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7); 309 int i2d_PKCS7_fp(FILE *fp, const PKCS7 *p7); 312 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7); 313 int i2d_PKCS7_bio(BIO *bp, const PKCS7 *p7); 314 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 315 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 334 long PKCS7_ctrl(PKCS7 *p7, in 360 STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); global() variable [all...] |
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/ |
H A D | pkcs7.h | 265 # define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7)) 308 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7); 309 int i2d_PKCS7_fp(FILE *fp, const PKCS7 *p7); 312 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7); 313 int i2d_PKCS7_bio(BIO *bp, const PKCS7 *p7); 314 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 315 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 334 long PKCS7_ctrl(PKCS7 *p7, in 360 STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); global() variable [all...] |
/third_party/node/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/ |
H A D | pkcs7.h | 265 # define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7)) 308 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7); 309 int i2d_PKCS7_fp(FILE *fp, const PKCS7 *p7); 312 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7); 313 int i2d_PKCS7_bio(BIO *bp, const PKCS7 *p7); 314 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 315 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 334 long PKCS7_ctrl(PKCS7 *p7, in 360 STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); global() variable [all...] |
/third_party/node/deps/openssl/config/archs/BSD-x86/no-asm/include/openssl/ |
H A D | pkcs7.h | 265 # define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7)) 308 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7); 309 int i2d_PKCS7_fp(FILE *fp, const PKCS7 *p7); 312 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7); 313 int i2d_PKCS7_bio(BIO *bp, const PKCS7 *p7); 314 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 315 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 334 long PKCS7_ctrl(PKCS7 *p7, in 360 STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); global() variable [all...] |
/third_party/node/deps/openssl/config/archs/BSD-x86_64/asm/include/openssl/ |
H A D | pkcs7.h | 265 # define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7)) 308 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7); 309 int i2d_PKCS7_fp(FILE *fp, const PKCS7 *p7); 312 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7); 313 int i2d_PKCS7_bio(BIO *bp, const PKCS7 *p7); 314 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 315 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 334 long PKCS7_ctrl(PKCS7 *p7, in 360 STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); global() variable [all...] |
/third_party/node/deps/openssl/config/archs/BSD-x86_64/asm_avx2/include/openssl/ |
H A D | pkcs7.h | 265 # define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7)) 308 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7); 309 int i2d_PKCS7_fp(FILE *fp, const PKCS7 *p7); 312 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7); 313 int i2d_PKCS7_bio(BIO *bp, const PKCS7 *p7); 314 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 315 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 334 long PKCS7_ctrl(PKCS7 *p7, in 360 STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); global() variable [all...] |
/third_party/node/deps/openssl/config/archs/BSD-x86/asm/include/openssl/ |
H A D | pkcs7.h | 265 # define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7)) 308 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7); 309 int i2d_PKCS7_fp(FILE *fp, const PKCS7 *p7); 312 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7); 313 int i2d_PKCS7_bio(BIO *bp, const PKCS7 *p7); 314 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 315 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 334 long PKCS7_ctrl(PKCS7 *p7, in 360 STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); global() variable [all...] |
/third_party/node/deps/openssl/config/archs/aix64-gcc-as/asm/include/openssl/ |
H A D | pkcs7.h | 265 # define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7)) 308 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7); 309 int i2d_PKCS7_fp(FILE *fp, const PKCS7 *p7); 312 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7); 313 int i2d_PKCS7_bio(BIO *bp, const PKCS7 *p7); 314 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 315 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 334 long PKCS7_ctrl(PKCS7 *p7, in 360 STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); global() variable [all...] |