Searched refs:x509ss (Results 1 – 1 of 1) sorted by relevance
/third_party/openssl/apps/ |
D | req.c | 224 X509 *x509ss = NULL; in req_main() local 725 if ((x509ss = X509_new()) == NULL) in req_main() 730 && !X509_set_version(x509ss, 2)) in req_main() 733 if (!X509_set_serialNumber(x509ss, serial)) in req_main() 736 if (!rand_serial(NULL, X509_get_serialNumber(x509ss))) in req_main() 740 if (!X509_set_issuer_name(x509ss, X509_REQ_get_subject_name(req))) in req_main() 746 if (!set_cert_times(x509ss, NULL, NULL, days)) in req_main() 749 (x509ss, X509_REQ_get_subject_name(req))) in req_main() 752 if (!tmppkey || !X509_set_pubkey(x509ss, tmppkey)) in req_main() 757 X509V3_set_ctx(&ext_ctx, x509ss, x509ss, NULL, NULL, 0); in req_main() [all …]
|