hi

I want to set certificate request version 3.
I wrote code as below
CA sign cert req but, certificate version number is 1.

send to me info.

thanx in advance

    X509_REQ *req;
    X509_NAME *subj;

    if ((req = X509_REQ_new()) == NULL) {
        return NULL;
    }

  if (!X509_REQ_set_version(req,2L)) 
  goto err;  
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to