-1.0.1c and openssl-fips-2.0
>> $cd C:\openssl-fips-2.0
>> $ms\do_fips
>> >FIPS BUILD SUCCESS
>> $out32dll\fips_test_suite
>> >All tests completed with 0 errors
>> $cd C:\openssl-1.0.1c
>> $perl Configure VC-WIN32 fips
>> >C
Obvious conclusion:
The OpenSSL library or DLL you link to was compiled with OPENSSL_FIPS
not set,
but your code was compiled with OPENSSL_FIPS set.
So either you are using a different copy of the compiled OpenSSL library
than
you think, or you have passed different options when compiling yo
enssl version -a
>OpenSSL 1.0.1c-fips...
$echo Hello World > hello.txt
$openssl md5 hello.txt
>works
$set OPENSSL_FIPS=1
$openssl md5 hello.txt
>Error disabled for fips
$openssl sha1 hello.txt
>works
Thanks for any advice,
-EJ
--
View this message in context:
http://old.