HomeSort by relevance Sort by last modified time
    Searched full:x509_name (Results 1 - 25 of 162) sorted by null

1 2 3 4 5 6 7

  /external/wpa_supplicant_8/src/tls/
x509v3.h 34 struct x509_name { struct
53 struct x509_name issuer;
54 struct x509_name subject;
110 void x509_name_string(struct x509_name *name, char *buf, size_t len);
111 int x509_name_compare(struct x509_name *a, struct x509_name *b);
120 struct x509_name *name);
  /external/chromium/net/base/
x509_openssl_util.h 25 bool ParsePrincipalKeyAndValueByIndex(X509_NAME* name,
30 bool ParsePrincipalValueByIndex(X509_NAME* name, int index, std::string* value);
32 bool ParsePrincipalValueByNID(X509_NAME* name, int nid, std::string* value);
x509_openssl_util.cc 17 bool ParsePrincipalKeyAndValueByIndex(X509_NAME* name,
44 bool ParsePrincipalValueByIndex(X509_NAME* name,
50 bool ParsePrincipalValueByNID(X509_NAME* name, int nid, std::string* value) {
x509_certificate_openssl.cc 60 void ParsePrincipalValues(X509_NAME* name,
73 X509_NAME* x509_name,
75 if (!x509_name)
78 ParsePrincipalValues(x509_name, NID_streetAddress,
80 ParsePrincipalValues(x509_name, NID_organizationName,
82 ParsePrincipalValues(x509_name, NID_organizationalUnitName,
84 ParsePrincipalValues(x509_name, NID_domainComponent,
87 nxou::ParsePrincipalValueByNID(x509_name, NID_commonName,
89 nxou::ParsePrincipalValueByNID(x509_name, NID_localityName
    [all...]
  /external/chromium_org/net/cert/
x509_util_openssl.h 26 bool NET_EXPORT ParsePrincipalKeyAndValueByIndex(X509_NAME* name,
31 bool NET_EXPORT ParsePrincipalValueByIndex(X509_NAME* name,
35 bool NET_EXPORT ParsePrincipalValueByNID(X509_NAME* name,
x509_certificate_openssl.cc 62 void ParsePrincipalValues(X509_NAME* name,
75 X509_NAME* x509_name,
77 if (!x509_name)
80 ParsePrincipalValues(x509_name, NID_streetAddress,
82 ParsePrincipalValues(x509_name, NID_organizationName,
84 ParsePrincipalValues(x509_name, NID_organizationalUnitName,
86 ParsePrincipalValues(x509_name, NID_domainComponent,
89 x509_util::ParsePrincipalValueByNID(x509_name, NID_commonName,
91 x509_util::ParsePrincipalValueByNID(x509_name, NID_localityName
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
x_name.c 79 static int x509_name_encode(X509_NAME *a);
80 static int x509_name_canon(X509_NAME *a);
112 * representing the ASN1. Unfortunately X509_NAME uses a completely different
127 IMPLEMENT_EXTERN_ASN1(X509_NAME, V_ASN1_SEQUENCE, x509_name_ff)
129 IMPLEMENT_ASN1_FUNCTIONS(X509_NAME)
130 IMPLEMENT_ASN1_DUP_FUNCTION(X509_NAME)
134 X509_NAME *ret = NULL;
135 ret = OPENSSL_malloc(sizeof(X509_NAME));
159 X509_NAME *a;
162 a = (X509_NAME *)*pval
    [all...]
  /external/openssl/crypto/asn1/
x_name.c 79 static int x509_name_encode(X509_NAME *a);
80 static int x509_name_canon(X509_NAME *a);
112 * representing the ASN1. Unfortunately X509_NAME uses a completely different
127 IMPLEMENT_EXTERN_ASN1(X509_NAME, V_ASN1_SEQUENCE, x509_name_ff)
129 IMPLEMENT_ASN1_FUNCTIONS(X509_NAME)
130 IMPLEMENT_ASN1_DUP_FUNCTION(X509_NAME)
134 X509_NAME *ret = NULL;
135 ret = OPENSSL_malloc(sizeof(X509_NAME));
159 X509_NAME *a;
162 a = (X509_NAME *)*pval
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/x509/
x509.h 117 #undef X509_NAME
197 } /* X509_NAME */;
199 DECLARE_STACK_OF(X509_NAME)
235 X509_NAME *subject;
254 X509_NAME *issuer;
256 X509_NAME *subject;
453 X509_NAME *issuer;
632 ASN1_INTEGER *ser, X509_NAME *issuer),
679 int X509_NAME_digest(const X509_NAME *data,const EVP_MD *type,
772 X509_NAME *X509_NAME_dup(X509_NAME *xn)
    [all...]
x509_cmp.c 130 X509_NAME *X509_get_issuer_name(X509 *a)
147 X509_NAME *X509_get_subject_name(X509 *a)
190 int X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b)
198 ret = i2d_X509_NAME((X509_NAME *)a, NULL);
205 ret = i2d_X509_NAME((X509_NAME *)b, NULL);
219 unsigned long X509_NAME_hash(X509_NAME *x)
224 /* Make sure X509_NAME structure contains valid cached encoding */
241 unsigned long X509_NAME_hash_old(X509_NAME *x)
247 /* Make sure X509_NAME structure contains valid cached encoding *
    [all...]
x509name.c 67 int X509_NAME_get_text_by_NID(X509_NAME *name, int nid, char *buf, int len)
76 int X509_NAME_get_text_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, char *buf,
92 int X509_NAME_entry_count(X509_NAME *name)
98 int X509_NAME_get_index_by_NID(X509_NAME *name, int nid, int lastpos)
108 int X509_NAME_get_index_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj,
129 X509_NAME_ENTRY *X509_NAME_get_entry(X509_NAME *name, int loc)
138 X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc)
174 int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type,
186 int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type,
198 int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type
    [all...]
x509_vfy.h 150 int (*get_by_subject)(X509_LOOKUP *ctx,int type,X509_NAME *name,
152 int (*get_by_issuer_serial)(X509_LOOKUP *ctx,int type,X509_NAME *name,
203 STACK_OF(X509) * (*lookup_certs)(X509_STORE_CTX *ctx, X509_NAME *nm);
204 STACK_OF(X509_CRL) * (*lookup_crls)(X509_STORE_CTX *ctx, X509_NAME *nm);
253 STACK_OF(X509) * (*lookup_certs)(X509_STORE_CTX *ctx, X509_NAME *nm);
254 STACK_OF(X509_CRL) * (*lookup_crls)(X509_STORE_CTX *ctx, X509_NAME *nm);
407 X509_NAME *name);
408 X509_OBJECT *X509_OBJECT_retrieve_by_subject(STACK_OF(X509_OBJECT) *h,int type,X509_NAME *name);
415 STACK_OF(X509)* X509_STORE_get1_certs(X509_STORE_CTX *st, X509_NAME *nm);
416 STACK_OF(X509_CRL)* X509_STORE_get1_crls(X509_STORE_CTX *st, X509_NAME *nm)
    [all...]
x509_lu.c 122 int X509_LOOKUP_by_subject(X509_LOOKUP *ctx, int type, X509_NAME *name,
131 int X509_LOOKUP_by_issuer_serial(X509_LOOKUP *ctx, int type, X509_NAME *name,
289 int X509_STORE_get_by_subject(X509_STORE_CTX *vs, int type, X509_NAME *name,
427 X509_NAME *name, int *pnmatch)
474 X509_NAME *name)
480 X509_NAME *name)
488 STACK_OF(X509)* X509_STORE_get1_certs(X509_STORE_CTX *ctx, X509_NAME *nm)
537 STACK_OF(X509_CRL)* X509_STORE_get1_crls(X509_STORE_CTX *ctx, X509_NAME *nm)
626 X509_NAME *xn;
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
x509.h 117 #undef X509_NAME
197 } /* X509_NAME */;
199 DECLARE_STACK_OF(X509_NAME)
235 X509_NAME *subject;
254 X509_NAME *issuer;
256 X509_NAME *subject;
453 X509_NAME *issuer;
632 ASN1_INTEGER *ser, X509_NAME *issuer),
679 int X509_NAME_digest(const X509_NAME *data,const EVP_MD *type,
772 X509_NAME *X509_NAME_dup(X509_NAME *xn)
    [all...]
x509_vfy.h 150 int (*get_by_subject)(X509_LOOKUP *ctx,int type,X509_NAME *name,
152 int (*get_by_issuer_serial)(X509_LOOKUP *ctx,int type,X509_NAME *name,
203 STACK_OF(X509) * (*lookup_certs)(X509_STORE_CTX *ctx, X509_NAME *nm);
204 STACK_OF(X509_CRL) * (*lookup_crls)(X509_STORE_CTX *ctx, X509_NAME *nm);
253 STACK_OF(X509) * (*lookup_certs)(X509_STORE_CTX *ctx, X509_NAME *nm);
254 STACK_OF(X509_CRL) * (*lookup_crls)(X509_STORE_CTX *ctx, X509_NAME *nm);
407 X509_NAME *name);
408 X509_OBJECT *X509_OBJECT_retrieve_by_subject(STACK_OF(X509_OBJECT) *h,int type,X509_NAME *name);
415 STACK_OF(X509)* X509_STORE_get1_certs(X509_STORE_CTX *st, X509_NAME *nm);
416 STACK_OF(X509_CRL)* X509_STORE_get1_crls(X509_STORE_CTX *st, X509_NAME *nm)
    [all...]
  /external/openssl/crypto/x509/
x509.h 117 #undef X509_NAME
197 } /* X509_NAME */;
199 DECLARE_STACK_OF(X509_NAME)
235 X509_NAME *subject;
254 X509_NAME *issuer;
256 X509_NAME *subject;
453 X509_NAME *issuer;
632 ASN1_INTEGER *ser, X509_NAME *issuer),
679 int X509_NAME_digest(const X509_NAME *data,const EVP_MD *type,
772 X509_NAME *X509_NAME_dup(X509_NAME *xn)
    [all...]
x509_cmp.c 130 X509_NAME *X509_get_issuer_name(X509 *a)
147 X509_NAME *X509_get_subject_name(X509 *a)
190 int X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b)
198 ret = i2d_X509_NAME((X509_NAME *)a, NULL);
205 ret = i2d_X509_NAME((X509_NAME *)b, NULL);
219 unsigned long X509_NAME_hash(X509_NAME *x)
224 /* Make sure X509_NAME structure contains valid cached encoding */
241 unsigned long X509_NAME_hash_old(X509_NAME *x)
247 /* Make sure X509_NAME structure contains valid cached encoding *
    [all...]
x509name.c 67 int X509_NAME_get_text_by_NID(X509_NAME *name, int nid, char *buf, int len)
76 int X509_NAME_get_text_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, char *buf,
92 int X509_NAME_entry_count(X509_NAME *name)
98 int X509_NAME_get_index_by_NID(X509_NAME *name, int nid, int lastpos)
108 int X509_NAME_get_index_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj,
129 X509_NAME_ENTRY *X509_NAME_get_entry(X509_NAME *name, int loc)
138 X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc)
174 int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type,
186 int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type,
198 int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type
    [all...]
x509_vfy.h 150 int (*get_by_subject)(X509_LOOKUP *ctx,int type,X509_NAME *name,
152 int (*get_by_issuer_serial)(X509_LOOKUP *ctx,int type,X509_NAME *name,
203 STACK_OF(X509) * (*lookup_certs)(X509_STORE_CTX *ctx, X509_NAME *nm);
204 STACK_OF(X509_CRL) * (*lookup_crls)(X509_STORE_CTX *ctx, X509_NAME *nm);
253 STACK_OF(X509) * (*lookup_certs)(X509_STORE_CTX *ctx, X509_NAME *nm);
254 STACK_OF(X509_CRL) * (*lookup_crls)(X509_STORE_CTX *ctx, X509_NAME *nm);
407 X509_NAME *name);
408 X509_OBJECT *X509_OBJECT_retrieve_by_subject(STACK_OF(X509_OBJECT) *h,int type,X509_NAME *name);
415 STACK_OF(X509)* X509_STORE_get1_certs(X509_STORE_CTX *st, X509_NAME *nm);
416 STACK_OF(X509_CRL)* X509_STORE_get1_crls(X509_STORE_CTX *st, X509_NAME *nm)
    [all...]
x509_lu.c 122 int X509_LOOKUP_by_subject(X509_LOOKUP *ctx, int type, X509_NAME *name,
131 int X509_LOOKUP_by_issuer_serial(X509_LOOKUP *ctx, int type, X509_NAME *name,
289 int X509_STORE_get_by_subject(X509_STORE_CTX *vs, int type, X509_NAME *name,
427 X509_NAME *name, int *pnmatch)
474 X509_NAME *name)
480 X509_NAME *name)
488 STACK_OF(X509)* X509_STORE_get1_certs(X509_STORE_CTX *ctx, X509_NAME *nm)
537 STACK_OF(X509_CRL)* X509_STORE_get1_crls(X509_STORE_CTX *ctx, X509_NAME *nm)
626 X509_NAME *xn;
  /external/openssl/include/openssl/
x509.h 117 #undef X509_NAME
197 } /* X509_NAME */;
199 DECLARE_STACK_OF(X509_NAME)
235 X509_NAME *subject;
254 X509_NAME *issuer;
256 X509_NAME *subject;
453 X509_NAME *issuer;
632 ASN1_INTEGER *ser, X509_NAME *issuer),
679 int X509_NAME_digest(const X509_NAME *data,const EVP_MD *type,
772 X509_NAME *X509_NAME_dup(X509_NAME *xn)
    [all...]
x509_vfy.h 150 int (*get_by_subject)(X509_LOOKUP *ctx,int type,X509_NAME *name,
152 int (*get_by_issuer_serial)(X509_LOOKUP *ctx,int type,X509_NAME *name,
203 STACK_OF(X509) * (*lookup_certs)(X509_STORE_CTX *ctx, X509_NAME *nm);
204 STACK_OF(X509_CRL) * (*lookup_crls)(X509_STORE_CTX *ctx, X509_NAME *nm);
253 STACK_OF(X509) * (*lookup_certs)(X509_STORE_CTX *ctx, X509_NAME *nm);
254 STACK_OF(X509_CRL) * (*lookup_crls)(X509_STORE_CTX *ctx, X509_NAME *nm);
407 X509_NAME *name);
408 X509_OBJECT *X509_OBJECT_retrieve_by_subject(STACK_OF(X509_OBJECT) *h,int type,X509_NAME *name);
415 STACK_OF(X509)* X509_STORE_get1_certs(X509_STORE_CTX *st, X509_NAME *nm);
416 STACK_OF(X509_CRL)* X509_STORE_get1_crls(X509_STORE_CTX *st, X509_NAME *nm)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
ssl_cert.c 568 static void set_client_CA_list(STACK_OF(X509_NAME) **ca_list,STACK_OF(X509_NAME) *name_list)
576 STACK_OF(X509_NAME) *SSL_dup_CA_list(STACK_OF(X509_NAME) *sk)
579 STACK_OF(X509_NAME) *ret;
580 X509_NAME *name;
595 void SSL_set_client_CA_list(SSL *s,STACK_OF(X509_NAME) *name_list)
600 void SSL_CTX_set_client_CA_list(SSL_CTX *ctx,STACK_OF(X509_NAME) *name_list)
605 STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(const SSL_CTX *ctx)
610 STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *s
    [all...]
  /external/openssl/ssl/
ssl_cert.c 548 static void set_client_CA_list(STACK_OF(X509_NAME) **ca_list,STACK_OF(X509_NAME) *name_list)
556 STACK_OF(X509_NAME) *SSL_dup_CA_list(STACK_OF(X509_NAME) *sk)
559 STACK_OF(X509_NAME) *ret;
560 X509_NAME *name;
575 void SSL_set_client_CA_list(SSL *s,STACK_OF(X509_NAME) *name_list)
580 void SSL_CTX_set_client_CA_list(SSL_CTX *ctx,STACK_OF(X509_NAME) *name_list)
585 STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(const SSL_CTX *ctx)
590 STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *s
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_ncons.c 77 static int nc_dn(X509_NAME *sub, X509_NAME *nm);
242 X509_NAME *nm;
372 * The canonical encoding of X509_NAME makes this comparison easy. It is
376 static int nc_dn(X509_NAME *nm, X509_NAME *base)

Completed in 997 milliseconds

1 2 3 4 5 6 7