Searched refs:x509ss (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.0-release/crypto/openssl/apps/
H A Dreq.c163 X509 *x509ss=NULL; local
832 if ((x509ss=X509_new()) == NULL) goto end;
835 if(extensions && !X509_set_version(x509ss, 2)) goto end;
838 if (!X509_set_serialNumber(x509ss, serial)) goto end;
843 X509_get_serialNumber(x509ss)))
847 if (!X509_set_issuer_name(x509ss, X509_REQ_get_subject_name(req))) goto end;
848 if (!X509_gmtime_adj(X509_get_notBefore(x509ss),0)) goto end;
849 if (!X509_time_adj_ex(X509_get_notAfter(x509ss), days, 0, NULL)) goto end;
850 if (!X509_set_subject_name(x509ss, X509_REQ_get_subject_name(req))) goto end;
852 if (!tmppkey || !X509_set_pubkey(x509ss,tmppke
[all...]

Completed in 82 milliseconds