HomeSort by relevance Sort by last modified time
    Searched refs:req_info (Results 1 - 19 of 19) sorted by null

  /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));
100 x->signature, x->req_info,pkey,md));
x509.h 243 X509_REQ_INFO *req_info; member in struct:X509_req_st
614 #define X509_REQ_get_version(x) ASN1_INTEGER_get((x)->req_info->version)
615 #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/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/chromium/net/socket/
socks5_client_socket.h 32 // |req_info| contains the hostname and port to which the socket above will
39 const HostResolver::RequestInfo& req_info);
socks_client_socket.h 31 // |req_info| contains the hostname and port to which the socket above will
34 const HostResolver::RequestInfo& req_info,
socks_client_socket.cc 63 const HostResolver::RequestInfo& req_info,
75 host_request_info_(req_info) {
socks5_client_socket.cc 50 const HostResolver::RequestInfo& req_info)
60 host_request_info_(req_info) {
  /external/openssl/crypto/x509v3/
v3_skey.c 124 pk = ctx->subject_req->req_info->pubkey->public_key;
  /external/chromium/net/http/
http_network_transaction.cc 752 HostResolver::RequestInfo req_info(request_->url.HostNoBrackets(),
754 req_info.set_referrer(request_->referrer);
755 req_info.set_priority(request_->priority);
758 s = new SOCKS5ClientSocket(s, req_info);
760 s = new SOCKSClientSocket(s, req_info, session_->host_resolver());
    [all...]
  /external/openssl/apps/
x509.c 594 if ( (req->req_info == NULL) ||
595 (req->req_info->pubkey == NULL) ||
596 (req->req_info->pubkey->public_key == NULL) ||
597 (req->req_info->pubkey->public_key->data == NULL))
642 if (!X509_set_issuer_name(x,req->req_info->subject)) goto end;
643 if (!X509_set_subject_name(x,req->req_info->subject)) goto end;
    [all...]
req.c 809 if ((kludge > 0) && !sk_X509_ATTRIBUTE_num(req->req_info->attributes))
811 sk_X509_ATTRIBUTE_free(req->req_info->attributes);
812 req->req_info->attributes = NULL;
915 req->req_info->enc.modified = 1;
    [all...]
ca.c     [all...]
  /external/chromium/net/socket_stream/
socket_stream.cc 707 HostResolver::RequestInfo req_info(url_.HostNoBrackets(),
711 s = new SOCKS5ClientSocket(s, req_info);
713 s = new SOCKSClientSocket(s, req_info, host_resolver_.get());
  /external/openssl/include/openssl/
x509.h 243 X509_REQ_INFO *req_info; member in struct:X509_req_st
614 #define X509_REQ_get_version(x) ASN1_INTEGER_get((x)->req_info->version)
615 #define X509_REQ_get_subject_name(x) ((x)->req_info->subject)
    [all...]

Completed in 173 milliseconds