Problem building Linux shared library with static FIPS capable OpenSSL

2019-11-18 Thread Pankaj Sarode
Hi, I am using following openssl versions openssl-1.0.2r.tar.gz openssl-fips-2.0.5.tar.gz Following are my files, *foo.c* : [root@data-domain-dev-vm poc]# cat foo.c #include #include #include int foo_func() { int rc, mode; mode = FIPS_mode(); if(mode == 0) { rc = FIPS_

Re: [openssl-users] Problem building Linux shared library with static FIPS capable OpenSSL

2017-05-02 Thread Nathan Glasser
>Try a shared build of the FIPS capable OpenSSL. You should then get >fips_premain_dso built as part of that process. Alternatively just do: > make fips_premain_dso >The fips_premain_dso executable isn't anything special: all it does is load >the library. It should then print out the signatur

Re: [openssl-users] Problem building Linux shared library with static FIPS capable OpenSSL

2017-05-01 Thread Dr. Stephen Henson
On Mon, May 01, 2017, Nathan Glasser wrote: > Hello, > > We are using openssl-fips 2.0.14 with OpenSSL 1.0.2j. > > We have a shared library on both Linux and Windows which uses static OpenSSL > libraries. We'd like it to use static FIPS-capable OpenSSL libraries. > > On Windows, everything is f

[openssl-users] Problem building Linux shared library with static FIPS capable OpenSSL

2017-05-01 Thread Nathan Glasser
Hello, We are using openssl-fips 2.0.14 with OpenSSL 1.0.2j. We have a shared library on both Linux and Windows which uses static OpenSSL libraries. We'd like it to use static FIPS-capable OpenSSL libraries. On Windows, everything is fine. On Linux, I have a problem. I am doing my tests on RedHa