/external/openssl/crypto/x509/ |
x509rset.c | 69 return(ASN1_INTEGER_set(x->req_info->version,version)); 74 if ((x == NULL) || (x->req_info == NULL)) return(0); 75 return(X509_NAME_set(&x->req_info->subject,name)); 80 if ((x == NULL) || (x->req_info == NULL)) return(0); 81 return(X509_PUBKEY_set(&x->req_info->pubkey,pkey));
|
x509_req.c | 84 ri=ret->req_info; 112 if ((req == NULL) || (req->req_info == NULL)) 114 return(X509_PUBKEY_get(req->req_info->pubkey)); 193 if ((req == NULL) || (req->req_info == NULL) || !ext_nids) 238 if (!req->req_info->attributes) 240 if (!(req->req_info->attributes = sk_X509_ATTRIBUTE_new_null())) 243 if(!sk_X509_ATTRIBUTE_push(req->req_info->attributes, attr)) goto err; 260 return X509at_get_attr_count(req->req_info->attributes); 266 return X509at_get_attr_by_NID(req->req_info->attributes, nid, lastpos); 272 return X509at_get_attr_by_OBJ(req->req_info->attributes, obj, lastpos) [all...] |
x509_r2x.c | 83 if (sk_X509_ATTRIBUTE_num(r->req_info->attributes) != 0)
|
x_all.c | 82 a->sig_alg,a->signature,a->req_info,r)); 108 x->signature, x->req_info,pkey,md)); 114 x->sig_alg, NULL, x->signature, x->req_info, ctx);
|
x509.h | 243 X509_REQ_INFO *req_info; member in struct:X509_req_st 615 #define X509_REQ_get_version(x) ASN1_INTEGER_get((x)->req_info->version) 616 #define X509_REQ_get_subject_name(x) ((x)->req_info->subject) [all...] |
/external/openssl/crypto/asn1/ |
x_req.c | 107 ASN1_SIMPLE(X509_REQ, req_info, X509_REQ_INFO),
|
t_req.c | 112 ri=x->req_info; 164 sk=x->req_info->attributes;
|
/external/chromium/net/socket/ |
socks5_client_socket.h | 35 // |req_info| contains the hostname and port to which the socket above will 42 const HostResolver::RequestInfo& req_info); 46 const HostResolver::RequestInfo& req_info);
|
socks_client_socket.h | 34 // |req_info| contains the hostname and port to which the socket above will 37 const HostResolver::RequestInfo& req_info, 42 const HostResolver::RequestInfo& req_info,
|
socks_client_socket.cc | 58 const HostResolver::RequestInfo& req_info, 69 host_request_info_(req_info), 74 const HostResolver::RequestInfo& req_info, 85 host_request_info_(req_info),
|
socks5_client_socket.cc | 32 const HostResolver::RequestInfo& req_info) 42 host_request_info_(req_info), 48 const HostResolver::RequestInfo& req_info) 58 host_request_info_(req_info),
|
/external/ppp/pppd/plugins/radius/ |
radius.c | 84 static int radius_setparams(VALUE_PAIR *vp, char *msg, REQUEST_INFO *req_info, 94 static int radius_setmppekeys(VALUE_PAIR *vp, REQUEST_INFO *req_info, 96 static int radius_setmppekeys2(VALUE_PAIR *vp, REQUEST_INFO *req_info); 345 REQUEST_INFO request_info, *req_info = &request_info; local 347 REQUEST_INFO *req_info = NULL; local 477 &received, radius_msg, req_info); 480 req_info); 485 if (radius_setparams(received, radius_msg, req_info, digest, 542 radius_setparams(VALUE_PAIR *vp, char *msg, REQUEST_INFO *req_info, 654 if (radius_setmppekeys(vp, req_info, challenge) < 0) [all...] |
/external/openssl/crypto/x509v3/ |
v3_skey.c | 124 pk = ctx->subject_req->req_info->pubkey->public_key;
|
/external/openssl/apps/ |
x509.c | 604 if ( (req->req_info == NULL) || 605 (req->req_info->pubkey == NULL) || 606 (req->req_info->pubkey->public_key == NULL) || 607 (req->req_info->pubkey->public_key->data == NULL)) 651 if (!X509_set_issuer_name(x,req->req_info->subject)) goto end; 652 if (!X509_set_subject_name(x,req->req_info->subject)) goto end; [all...] |
req.c | 818 if ((kludge > 0) && !sk_X509_ATTRIBUTE_num(req->req_info->attributes)) 820 sk_X509_ATTRIBUTE_free(req->req_info->attributes); 821 req->req_info->attributes = NULL; 926 req->req_info->enc.modified = 1; [all...] |
ca.c | [all...] |
/external/chromium/net/socket_stream/ |
socket_stream.cc | 780 HostResolver::RequestInfo req_info(HostPortPair::FromURL(url_)); 784 s = new SOCKS5ClientSocket(s, req_info); 786 s = new SOCKSClientSocket(s, req_info, host_resolver_); [all...] |
/external/openssl/include/openssl/ |
x509.h | 243 X509_REQ_INFO *req_info; member in struct:X509_req_st 615 #define X509_REQ_get_version(x) ASN1_INTEGER_get((x)->req_info->version) 616 #define X509_REQ_get_subject_name(x) ((x)->req_info->subject) [all...] |
/external/chromium/net/base/ |
host_resolver_impl.cc | 461 // Returns true if |req_info| can be fulfilled by this job. 462 bool CanServiceRequest(const RequestInfo& req_info) const { 463 return key_ == resolver_->GetEffectiveKeyForRequest(req_info); [all...] |