Re[3]: Link error on CERT_AddExtensionByOID

2011-04-10 Thread Konstantin Andreev
NSS developers reluctantly export symbols from the library, because once exported, they should be maintained forever. Besides that, public API should be "minimally sufficient". That is, even frequently occurring operation should not be placed in the public API, if it (operation) may be impleme

Re: Link error on CERT_AddExtensionByOID

2011-04-10 Thread james07
Thanks, guess I have to implement a similar function in my code then? Bit of a shame it is not being exported for public consumption. I imagine its usage would be quite common, no? Cheers, James Konstantin Andreev-2 wrote: > > This is an ancient [bug 294538], six years (sic!) old. > > CERT_A

Re: Link error on CERT_AddExtensionByOID

2011-04-10 Thread Konstantin Andreev
This is an ancient [bug 294538], six years (sic!) old. CERT_AddExtensionByOID, as many other functions, is declared in the public header (here: cert.h), but is not exported by the library. Keep well, Konstantin james07 wrote: I wish to call CERT_AddExtensionByOID() in my application. However