/third_party/openssl/crypto/x509v3/ |
D | v3_genn.c | 32 ASN1_CHOICE(GENERAL_NAME) = { 33 ASN1_IMP(GENERAL_NAME, d.otherName, OTHERNAME, GEN_OTHERNAME), 34 ASN1_IMP(GENERAL_NAME, d.rfc822Name, ASN1_IA5STRING, GEN_EMAIL), 35 ASN1_IMP(GENERAL_NAME, d.dNSName, ASN1_IA5STRING, GEN_DNS), 37 ASN1_IMP(GENERAL_NAME, d.x400Address, ASN1_SEQUENCE, GEN_X400), 39 ASN1_EXP(GENERAL_NAME, d.directoryName, X509_NAME, GEN_DIRNAME), 40 ASN1_IMP(GENERAL_NAME, d.ediPartyName, EDIPARTYNAME, GEN_EDIPARTY), 41 ASN1_IMP(GENERAL_NAME, d.uniformResourceIdentifier, ASN1_IA5STRING, GEN_URI), 42 ASN1_IMP(GENERAL_NAME, d.iPAddress, ASN1_OCTET_STRING, GEN_IPADD), 43 ASN1_IMP(GENERAL_NAME, d.registeredID, ASN1_OBJECT, GEN_RID) [all …]
|
D | v3_alt.c | 25 static int do_othername(GENERAL_NAME *gen, const char *value, X509V3_CTX *ctx); 26 static int do_dirname(GENERAL_NAME *gen, const char *value, X509V3_CTX *ctx); 55 GENERAL_NAME *gen; in STACK_OF() 79 GENERAL_NAME *gen, in STACK_OF() 158 int GENERAL_NAME_print(BIO *out, GENERAL_NAME *gen) in GENERAL_NAME_print() 242 GENERAL_NAME *gen = v2i_GENERAL_NAME(method, ctx, cnf); in v2i_issuer_alt() 260 GENERAL_NAME *gen; in copy_issuer() 326 GENERAL_NAME *gen; in v2i_subject_alt() 347 GENERAL_NAME *gen = NULL; in copy_email() 399 GENERAL_NAME *gen; in v2i_GENERAL_NAMES() [all …]
|
D | v3_ncons.c | 31 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc); 32 static int nc_match_single(GENERAL_NAME *sub, GENERAL_NAME *gen); 50 ASN1_SIMPLE(GENERAL_SUBTREE, base, GENERAL_NAME), 272 GENERAL_NAME gntmp; in NAME_CONSTRAINTS_check() 305 GENERAL_NAME *gen = sk_GENERAL_NAME_value(x->altname, i); in NAME_CONSTRAINTS_check() 416 GENERAL_NAME gntmp; in NAME_CONSTRAINTS_check_CN() 453 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc) in nc_match() 505 static int nc_match_single(GENERAL_NAME *gen, GENERAL_NAME *base) in nc_match_single()
|
D | v3_admis.c | 39 ASN1_EXP_OPT(ADMISSIONS, admissionAuthority, GENERAL_NAME, 0), 45 ASN1_OPT(ADMISSION_SYNTAX, admissionAuthority, GENERAL_NAME), 241 const GENERAL_NAME *ADMISSION_SYNTAX_get0_admissionAuthority(const ADMISSION_SYNTAX *as) in ADMISSION_SYNTAX_get0_admissionAuthority() 247 GENERAL_NAME *aa) in ADMISSION_SYNTAX_set0_admissionAuthority() 265 const GENERAL_NAME *ADMISSIONS_get0_admissionAuthority(const ADMISSIONS *a) in ADMISSIONS_get0_admissionAuthority() 270 void ADMISSIONS_set0_admissionAuthority(ADMISSIONS *a, GENERAL_NAME *aa) in ADMISSIONS_set0_admissionAuthority()
|
D | v3_admis.h | 28 GENERAL_NAME* admissionAuthority; 34 GENERAL_NAME* admissionAuthority;
|
D | v3_crld.c | 45 static STACK_OF(GENERAL_NAME) *gnames_from_sectname(X509V3_CTX *ctx, in STACK_OF() argument 49 STACK_OF(GENERAL_NAME) *gens; in STACK_OF() 69 STACK_OF(GENERAL_NAME) *fnm = NULL; in set_dist_point_name() 242 GENERAL_NAME *gen = NULL; in v2i_crld() 312 ASN1_IMP_SEQUENCE_OF(DIST_POINT_NAME, name.fullname, GENERAL_NAME, 0), 322 ASN1_IMP_SEQUENCE_OF_OPT(DIST_POINT, CRLissuer, GENERAL_NAME, 2) 409 static int print_gens(BIO *out, STACK_OF(GENERAL_NAME) *gens, int indent) in print_gens()
|
D | v3_akeya.c | 19 ASN1_IMP_SEQUENCE_OF_OPT(AUTHORITY_KEYID, issuer, GENERAL_NAME, 1),
|
D | v3_info.c | 50 ASN1_SIMPLE(ACCESS_DESCRIPTION, location, GENERAL_NAME)
|
D | v3_akey.c | 105 GENERAL_NAME *gen = NULL; in v2i_AUTHORITY_KEYID()
|
/third_party/openssl/include/openssl/ |
D | x509v3.h | 153 } GENERAL_NAME; typedef 157 GENERAL_NAME *location; 166 DEFINE_STACK_OF(GENERAL_NAME) 167 typedef STACK_OF(GENERAL_NAME) GENERAL_NAMES; 267 GENERAL_NAME *base; 470 DECLARE_ASN1_FUNCTIONS(GENERAL_NAME) 471 GENERAL_NAME *GENERAL_NAME_dup(GENERAL_NAME *a); 472 int GENERAL_NAME_cmp(GENERAL_NAME *a, GENERAL_NAME *b); 485 GENERAL_NAME *gen, 487 int GENERAL_NAME_print(BIO *out, GENERAL_NAME *gen); [all …]
|
D | ts.h | 267 int TS_TST_INFO_set_tsa(TS_TST_INFO *a, GENERAL_NAME *tsa); 268 GENERAL_NAME *TS_TST_INFO_get_tsa(TS_TST_INFO *a);
|
/third_party/openssl/crypto/ts/ |
D | ts_rsp_verify.c | 37 static int ts_check_signer_name(GENERAL_NAME *tsa_name, X509 *signer); 38 static int ts_find_name(STACK_OF(GENERAL_NAME) *gen_names, 39 GENERAL_NAME *name); 348 GENERAL_NAME *issuer; in ts_issuer_serial_cmp() 417 GENERAL_NAME *tsa_name = tst_info->tsa; in int_ts_RESP_verify_token() 672 static int ts_check_signer_name(GENERAL_NAME *tsa_name, X509 *signer) in ts_check_signer_name() 674 STACK_OF(GENERAL_NAME) *gen_names = NULL; in ts_check_signer_name() 699 static int ts_find_name(STACK_OF(GENERAL_NAME) *gen_names, GENERAL_NAME *name) in ts_find_name() 703 GENERAL_NAME *current = sk_GENERAL_NAME_value(gen_names, i); in ts_find_name()
|
D | ts_local.h | 91 GENERAL_NAME *tsa; 108 STACK_OF(GENERAL_NAME) *issuer; 210 GENERAL_NAME *tsa_name;
|
D | ts_rsp_utils.c | 272 int TS_TST_INFO_set_tsa(TS_TST_INFO *a, GENERAL_NAME *tsa) in TS_TST_INFO_set_tsa() 274 GENERAL_NAME *new_tsa; in TS_TST_INFO_set_tsa() 288 GENERAL_NAME *TS_TST_INFO_get_tsa(TS_TST_INFO *a) in TS_TST_INFO_get_tsa()
|
D | ts_asn1.c | 95 ASN1_EXP_OPT(TS_TST_INFO, tsa, GENERAL_NAME, 0), 205 ASN1_SEQUENCE_OF(ESS_ISSUER_SERIAL, issuer, GENERAL_NAME),
|
D | ts_rsp_sign.c | 542 GENERAL_NAME *tsa_name = NULL; in ts_RESP_create_tst_info() 769 GENERAL_NAME *name = NULL; in ess_CERT_ID_new_init() 902 GENERAL_NAME *name = NULL; in ess_cert_id_v2_new_init()
|
/third_party/openssl/doc/man3/ |
D | ADMISSIONS.pod | 59 const GENERAL_NAME *ADMISSION_SYNTAX_get0_admissionAuthority( 62 ADMISSION_SYNTAX *as, GENERAL_NAME *aa); 68 const GENERAL_NAME *ADMISSIONS_get0_admissionAuthority(const ADMISSIONS *a); 69 void ADMISSIONS_set0_admissionAuthority(ADMISSIONS *a, GENERAL_NAME *aa);
|
/third_party/openssl/test/ |
D | v3nametest.c | 132 GENERAL_NAME *gen = NULL; in set_altname() 663 GENERAL_NAME **namesa = OPENSSL_malloc(sizeof(*namesa) in test_GENERAL_NAME_cmp() 665 GENERAL_NAME **namesb = OPENSSL_malloc(sizeof(*namesb) in test_GENERAL_NAME_cmp()
|
/third_party/openssl/include/crypto/ |
D | x509.h | 121 STACK_OF(GENERAL_NAME) *issuer; 178 STACK_OF(GENERAL_NAME) *altname;
|
/third_party/openssl/crypto/ocsp/ |
D | ocsp_local.h | 40 GENERAL_NAME *requestorName;
|
D | ocsp_asn.c | 41 ASN1_EXP_OPT(OCSP_REQINFO, requestorName, GENERAL_NAME, 1),
|
D | ocsp_cl.c | 53 GENERAL_NAME *gen; in OCSP_request_set1_name()
|
/third_party/openssl/crypto/asn1/ |
D | asn1_item_list.h | 72 ASN1_ITEM_ref(GENERAL_NAME),
|
/third_party/boost/boost/asio/ssl/impl/ |
D | rfc2818_verification.ipp | 62 GENERAL_NAME* gen = sk_GENERAL_NAME_value(gens, i);
|
/third_party/boost/libs/asio/include/boost/asio/ssl/impl/ |
D | rfc2818_verification.ipp | 62 GENERAL_NAME* gen = sk_GENERAL_NAME_value(gens, i);
|