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?

link|improve this question

75% accept rate
I can't reproduce your memory error. Maybe post some minimal compilable code that reproduces the problem. Also, to see what X509_add_ext frees, 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
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.