Hello Folks,

I have a question it may be naive but please excuse.

We have 2 versions of openssl

[root@10 ~]# openssl version (preinstalled in OS)
OpenSSL 1.0.1e-fips 11 Feb 2013
[root@10 ~]# which openssl
/usr/bin/openssl
[root@10 ~]# /usr/local/ssl/bin/openssl version (We compiled this version)
OpenSSL 1.0.1h 5 Jun 2014

While installing we specify --with-ssl attribute
host.ssh("cd /var/lib/httpd-2.2.25; \
                ./configure \
                    --prefix=/etc/httpd \
                    --exec-prefix=/usr \
                    --bindir=/usr/bin \
                    --sbindir=/usr/sbin \
                    --mandir=/usr/share/man \
                    --libdir=/usr/lib \
                    --sysconfdir=/etc/httpd/conf \
                    --includedir=/usr/local/include/httpd \
                    --libexecdir=/etc/httpd/modules \
                    --datadir=/var/www \
                    --with-mpm=prefork \
                    --with-devrandom \
                    --enable-mods-shared=all \
                    --enable-cache \
                    --enable-disk-cache \
                    --enable-file-cache \
                    --enable-mem-cache \
                    --enable-proxy \
                    --enable-ssl \
                    --with-ssl=/usr/local/ssl; \
                make; make install")

However from external/client side how can I verify which is the exact
version of openssl libraries being used during communication. Please help.

-- 
Regards,
Srihari NA

Reply via email to