I am trying to sign an existing csr using a CA certificate's private key. So i am planning to use X509_req_sign()
API. I have created a x509_req
object by reading the csr file. I have also extracted the subject name out of the CA certificate.
But I am not getting how I can set the issuer name to x509_req
object. I found an API x509_set_issuer_name()
exists but it is for object of type X509
. Is there any similar API for x509_Req
type also? What is the easy way to sign an existing csr using CA certificates private key? I have to do all these using C++ code only.
Any suggestions please?
Issuer name and information should be filled by issuing CA, not by the subject. Please refer structure of CSR at https://www.rfc-editor.org/rfc/rfc2986#page-5.
As issuer name is not present in structure, you cannot set. You can see structure definition at https://github.com/openssl/openssl/blob/b69ae442a3b3e168d73c53dcd04bacf33eee8569/crypto/include/internal/x509_int.h
As you can see that there is no issuer name in request structure, you cannot set it.