How can I print the version of libssl and libnspr in c++ code ? I want to print version for both defined in header and library .

link|improve this question

feedback

1 Answer

The header file opensslv.h #define 's the macro variable OPENSSL_VERSION_TEXT, describing the version. For instance "OpenSSL 0.9.8o-fips 01 Jun 2010".

For the library itself, the name of the lib file contains the version number. In ubuntu, in the folder /lib/, the file is called libssl.so.0.9.8. If you felt like it, you could use boost::filesystem to grab the particular filename and then parse it, perhaps using boost::regex.

link|improve this answer
I want to print ssl version on compile time to check with which version it is getting linked. – Vivek Goel Sep 24 '11 at 8:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.