I use TSslCertTools for generating a KeyPair and Certificate CSR but i have a probleme with the Subject variable, i can find a ways to specify GN= and SN= because i only see the general variable like this :
TSslCertTools *Tool = new TSslCertTools(NULL);
Tool->CommonName = "Common Name";
Tool->Organization = "Org";
Tool->OrgUnit = "Org Unit";
Tool->Locality = "Montreal";
Tool->State = "QC";
Tool->Country = "CA";
I have search all source code for Extended option or Subject line to specify my own data but nothing found ?