I am trying to enable fips mode through OPENSSL_config and it is failing. Could you any one throw more light on this? I am running on windows 32 bit and using VC++ SP6.
Openssl.conf file
FIPS_conf = FIPS_options
[ FIPS_options ]
fips_mode = yes
Program
int main(){
int result;
OPENSSL_config("FIPS_conf");
#ifdef OPENSSL_FIPS
if (FIPS_mode())
{
printf("*** IN FIPS MODE ***\n");
}
#endif
}
