I have the X509 structure, I just want to add an extension. Currently I am using:
int nid = OBJ_create("1.2.3.96", "SHORT", "LONG NAME");
X509_EXTENSION *ex = X509V3_EXT_conf_nid(NULL, NULL, nid, "value");
X509_add_ext(cert,ex,-1); // -1 means add extension to end of the list
X509_EXTENSION_free(ex);
But Valgrind detects a memory error when I go to sign the cert (it errors without valgrinds help). Valgrind states that there is a free in X506_add_ext which the X509_sign function is trying to access. Any ideas?
X509_add_extfrees, you can look at the source. You'll see that it copies the extension you pass in, which leaves you the owner of the original pointer: google.com/codesearch#XrPblB9f5NU/crypto/x509/… – indiv Sep 22 '11 at 5:10