/external/libchrome/crypto/ |
wincrypt_shim.h | 19 #undef X509_NAME
|
/external/boringssl/src/crypto/x509/ |
x_name.c | 85 static int x509_name_encode(X509_NAME *a); 86 static int x509_name_canon(X509_NAME *a); 118 * representing the ASN1. Unfortunately X509_NAME uses a completely different 133 IMPLEMENT_EXTERN_ASN1(X509_NAME, V_ASN1_SEQUENCE, x509_name_ff) 135 IMPLEMENT_ASN1_FUNCTIONS(X509_NAME) 136 IMPLEMENT_ASN1_DUP_FUNCTION(X509_NAME) 140 X509_NAME *ret = NULL; 141 ret = OPENSSL_malloc(sizeof(X509_NAME)); 165 X509_NAME *a; 168 a = (X509_NAME *)*pval [all...] |
x509rset.c | 69 int X509_REQ_set_subject_name(X509_REQ *x, X509_NAME *name)
|
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, const 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, const ASN1_OBJECT *obj, 129 X509_NAME_ENTRY *X509_NAME_get_entry(X509_NAME *name, int loc) 137 X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc) 172 int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type, 184 int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, 196 int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type [all...] |
x_req.c | 95 ASN1_SIMPLE(X509_REQ_INFO, subject, X509_NAME),
|
x509_cmp.c | 130 X509_NAME *X509_get_issuer_name(X509 *a) 145 X509_NAME *X509_get_subject_name(X509 *a) 197 int X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b) 205 ret = i2d_X509_NAME((X509_NAME *)a, NULL); 212 ret = i2d_X509_NAME((X509_NAME *)b, NULL); 226 unsigned long X509_NAME_hash(X509_NAME *x) 231 /* Make sure X509_NAME structure contains valid cached encoding */ 247 unsigned long X509_NAME_hash_old(X509_NAME *x) 253 /* Make sure X509_NAME structure contains valid cached encoding * [all...] |
x509_set.c | 99 int X509_set_issuer_name(X509 *x, X509_NAME *name) 105 int X509_set_subject_name(X509 *x, X509_NAME *name)
|
x509_r2x.c | 71 X509_NAME *xn;
|
x509_lu.c | 127 int X509_LOOKUP_by_subject(X509_LOOKUP *ctx, int type, X509_NAME *name, 136 int X509_LOOKUP_by_issuer_serial(X509_LOOKUP *ctx, int type, X509_NAME *name, 299 int X509_STORE_get_by_subject(X509_STORE_CTX *vs, int type, X509_NAME *name, 437 X509_NAME *name, int *pnmatch) 487 X509_NAME *name) 493 X509_NAME *name) 501 STACK_OF(X509)* X509_STORE_get1_certs(X509_STORE_CTX *ctx, X509_NAME *nm) 551 STACK_OF(X509_CRL)* X509_STORE_get1_crls(X509_STORE_CTX *ctx, X509_NAME *nm) 639 X509_NAME *xn; 730 STACK_OF(X509_CRL)* (*cb)(X509_STORE_CTX *ctx, X509_NAME *nm) [all...] |
x_crl.c | 86 ASN1_INTEGER *ser, X509_NAME *issuer); 102 X509_REVOKED **ret, ASN1_INTEGER *serial, X509_NAME *issuer); 139 ASN1_SIMPLE(X509_CRL_INFO, issuer, X509_NAME), 440 static int crl_revoked_issuer_match(X509_CRL *crl, X509_NAME *nm, 472 X509_REVOKED **ret, ASN1_INTEGER *serial, X509_NAME *issuer) 527 ASN1_INTEGER *ser, X509_NAME *issuer),
|
x_x509.c | 77 ASN1_SIMPLE(X509_CINF, issuer, X509_NAME), 79 ASN1_SIMPLE(X509_CINF, subject, X509_NAME),
|
x509cset.c | 74 int X509_CRL_set_issuer_name(X509_CRL *x, X509_NAME *name)
|
a_strex.c | 380 static int do_name_ex(char_io *io_ch, void *arg, X509_NAME *n, 507 int X509_NAME_print_ex(BIO *out, X509_NAME *nm, int indent, unsigned long flags) 515 int X509_NAME_print_ex_fp(FILE *fp, X509_NAME *nm, int indent, unsigned long flags)
|
x509_obj.c | 68 char *X509_NAME_oneline(X509_NAME *a, char *buf, int len) 95 strncpy(buf,"NO X509_NAME",len);
|
/external/google-tv-pairing-protocol/cpp/src/polo/util/ |
certificateutil.h | 22 // Fixes a problem with X509_NAME on Windows. 23 #undef X509_NAME
|
certificateutil.cc | 96 X509_NAME* name = X509_get_subject_name(x509);
|
/external/boringssl/src/ssl/ |
ssl_cert.c | 319 static void set_client_CA_list(STACK_OF(X509_NAME) **ca_list, 320 STACK_OF(X509_NAME) *name_list) { 325 STACK_OF(X509_NAME) *SSL_dup_CA_list(STACK_OF(X509_NAME) *list) { 326 STACK_OF(X509_NAME) *ret = sk_X509_NAME_new_null(); 333 X509_NAME *name = X509_NAME_dup(sk_X509_NAME_value(list, i)); 344 void SSL_set_client_CA_list(SSL *ssl, STACK_OF(X509_NAME) *name_list) { 348 void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *name_list) { 352 STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(const SSL_CTX *ctx) { 356 STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *ssl) [all...] |
ssl_file.c | 128 static int xname_cmp(const X509_NAME **a, const X509_NAME **b) { 134 STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file) { 137 X509_NAME *xn = NULL; 138 STACK_OF(X509_NAME) *ret = NULL, *sk; 196 int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack, 200 X509_NAME *xn = NULL; 202 int (*oldcmp)(const X509_NAME **a, const X509_NAME **b); 259 int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack [all...] |
/external/boringssl/src/include/openssl/ |
x509.h | 158 } /* X509_NAME */; 160 DECLARE_STACK_OF(X509_NAME) 196 X509_NAME *subject; 215 X509_NAME *issuer; 217 X509_NAME *subject; 409 X509_NAME *issuer; 588 ASN1_INTEGER *ser, X509_NAME *issuer), 635 OPENSSL_EXPORT int X509_NAME_digest(const X509_NAME *data,const EVP_MD *type, 720 OPENSSL_EXPORT X509_NAME *X509_NAME_dup(X509_NAME *xn) [all...] |
x509_vfy.h | 145 int (*get_by_subject)(X509_LOOKUP *ctx,int type,X509_NAME *name, 147 int (*get_by_issuer_serial)(X509_LOOKUP *ctx,int type,X509_NAME *name, 202 STACK_OF(X509) * (*lookup_certs)(X509_STORE_CTX *ctx, X509_NAME *nm); 203 STACK_OF(X509_CRL) * (*lookup_crls)(X509_STORE_CTX *ctx, X509_NAME *nm); 251 STACK_OF(X509) * (*lookup_certs)(X509_STORE_CTX *ctx, X509_NAME *nm); 252 STACK_OF(X509_CRL) * (*lookup_crls)(X509_STORE_CTX *ctx, X509_NAME *nm); 428 X509_NAME *name); 429 OPENSSL_EXPORT X509_OBJECT *X509_OBJECT_retrieve_by_subject(STACK_OF(X509_OBJECT) *h,int type,X509_NAME *name); 436 OPENSSL_EXPORT STACK_OF(X509)* X509_STORE_get1_certs(X509_STORE_CTX *st, X509_NAME *nm); 437 OPENSSL_EXPORT STACK_OF(X509_CRL)* X509_STORE_get1_crls(X509_STORE_CTX *st, X509_NAME *nm) [all...] |
stack_macros.h | [all...] |
/system/keymaster/ |
openssl_utils.h | 67 DEFINE_OPENSSL_OBJECT_POINTER(X509_NAME)
|
/external/boringssl/src/crypto/x509v3/ |
v3_ncons.c | 80 static int nc_dn(X509_NAME *sub, X509_NAME *nm); 246 X509_NAME *nm; 377 * The canonical encoding of X509_NAME makes this comparison easy. It is 381 static int nc_dn(X509_NAME *nm, X509_NAME *base)
|
v3name_test.c | 125 X509_NAME *n = NULL; 294 X509_NAME *issuer = NULL;
|
/external/google-tv-pairing-protocol/cpp/tests/polo/util/ |
certificateutiltest.cc | 83 X509_NAME* name = X509_get_subject_name(x509);
|