I want to be able to generate SSL certificates from my code but the API does not give specific information about how to format the parameters to generate the certificate or what it returns the function returns.
First question what values will this function return and what do they mean?
int WebMgrSslCertificatGenerate (char ∗pCountry, char ∗pState, char ∗pLocality, char ∗pOrg, char ∗pOrgUnit, char ∗pContact, char ∗pExpires, long bitSize, int save)
Next what is the int save parameter? And what format do the char* have to be especially the pExpires field? Lastly is there a parameter for the Common Name? Thanks.
First question what values will this function return and what do they mean?
int WebMgrSslCertificatGenerate (char ∗pCountry, char ∗pState, char ∗pLocality, char ∗pOrg, char ∗pOrgUnit, char ∗pContact, char ∗pExpires, long bitSize, int save)
Next what is the int save parameter? And what format do the char* have to be especially the pExpires field? Lastly is there a parameter for the Common Name? Thanks.
Comment