Symbol: req_info
crypto/openssl/crypto/crmf/crmf_lib.c
558
pubkey = p10cr->req_info.pubkey;
crypto/openssl/crypto/x509/v3_skid.c
107
return ossl_x509_pubkey_hash(ctx->subject_cert != NULL ? ctx->subject_cert->cert_info.key : ctx->subject_req->req_info.pubkey);
crypto/openssl/crypto/x509/x509_r2x.c
35
if (sk_X509_ATTRIBUTE_num(r->req_info.attributes) != 0) {
crypto/openssl/crypto/x509/x509_req.c
177
loc = X509at_get_attr_by_NID(req->req_info.attributes, nid, -1);
crypto/openssl/crypto/x509/x509_req.c
191
X509_ATTRIBUTE *att = X509at_delete_attr(req->req_info.attributes, loc);
crypto/openssl/crypto/x509/x509_req.c
216
return X509at_get_attr_count(req->req_info.attributes);
crypto/openssl/crypto/x509/x509_req.c
221
return X509at_get_attr_by_NID(req->req_info.attributes, nid, lastpos);
crypto/openssl/crypto/x509/x509_req.c
227
return X509at_get_attr_by_OBJ(req->req_info.attributes, obj, lastpos);
crypto/openssl/crypto/x509/x509_req.c
232
return X509at_get_attr(req->req_info.attributes, loc);
crypto/openssl/crypto/x509/x509_req.c
243
attr = X509at_delete_attr(req->req_info.attributes, loc);
crypto/openssl/crypto/x509/x509_req.c
245
req->req_info.enc.modified = 1;
crypto/openssl/crypto/x509/x509_req.c
255
if (!X509at_add1_attr(&req->req_info.attributes, attr))
crypto/openssl/crypto/x509/x509_req.c
257
req->req_info.enc.modified = 1;
crypto/openssl/crypto/x509/x509_req.c
269
if (!X509at_add1_attr_by_OBJ(&req->req_info.attributes, obj,
crypto/openssl/crypto/x509/x509_req.c
272
req->req_info.enc.modified = 1;
crypto/openssl/crypto/x509/x509_req.c
284
if (!X509at_add1_attr_by_NID(&req->req_info.attributes, nid,
crypto/openssl/crypto/x509/x509_req.c
287
req->req_info.enc.modified = 1;
crypto/openssl/crypto/x509/x509_req.c
299
if (!X509at_add1_attr_by_txt(&req->req_info.attributes, attrname,
crypto/openssl/crypto/x509/x509_req.c
302
req->req_info.enc.modified = 1;
crypto/openssl/crypto/x509/x509_req.c
308
return ASN1_INTEGER_get(req->req_info.version);
crypto/openssl/crypto/x509/x509_req.c
313
return req->req_info.subject;
crypto/openssl/crypto/x509/x509_req.c
348
req->req_info.enc.modified = 1;
crypto/openssl/crypto/x509/x509_req.c
349
return i2d_X509_REQ_INFO(&req->req_info, pp);
crypto/openssl/crypto/x509/x509_req.c
35
ri = &ret->req_info;
crypto/openssl/crypto/x509/x509_req.c
67
return X509_PUBKEY_get(req->req_info.pubkey);
crypto/openssl/crypto/x509/x509_req.c
74
return X509_PUBKEY_get0(req->req_info.pubkey);
crypto/openssl/crypto/x509/x509_req.c
79
return req->req_info.pubkey;
crypto/openssl/crypto/x509/x509rset.c
24
x->req_info.enc.modified = 1;
crypto/openssl/crypto/x509/x509rset.c
25
return ASN1_INTEGER_set(x->req_info.version, version);
crypto/openssl/crypto/x509/x509rset.c
32
x->req_info.enc.modified = 1;
crypto/openssl/crypto/x509/x509rset.c
33
return X509_NAME_set(&x->req_info.subject, name);
crypto/openssl/crypto/x509/x509rset.c
40
x->req_info.enc.modified = 1;
crypto/openssl/crypto/x509/x509rset.c
41
return X509_PUBKEY_set(&x->req_info.pubkey, pkey);
crypto/openssl/crypto/x509/x_all.c
146
x->req_info.enc.modified = 1;
crypto/openssl/crypto/x509/x_all.c
148
x->signature, &x->req_info, NULL,
crypto/openssl/crypto/x509/x_all.c
158
x->req_info.enc.modified = 1;
crypto/openssl/crypto/x509/x_all.c
160
&x->sig_alg, NULL, x->signature, &x->req_info,
crypto/openssl/crypto/x509/x_all.c
52
a->signature, &a->req_info, a->distinguishing_id,
crypto/openssl/crypto/x509/x_req.c
116
ASN1_EMBED(X509_REQ, req_info, X509_REQ_INFO),
crypto/openssl/crypto/x509/x_req.c
70
if (old->req_info.pubkey != NULL) {
crypto/openssl/crypto/x509/x_req.c
71
EVP_PKEY *pkey = X509_PUBKEY_get0(old->req_info.pubkey);
crypto/openssl/crypto/x509/x_req.c
79
if (!X509_PUBKEY_set(&ret->req_info.pubkey, pkey)) {
crypto/openssl/include/crypto/x509.h
77
X509_REQ_INFO req_info; /* signed certificate request data */