Just to be clear
my current config is:
./config fipscanisterbuild no-asm (in the FIPS 1.2 directory)
make
./config fips (in the 0.9.8k directory)
make
I attempted:
./config -d fipscanisterbuild no-asm (in the FIPS 1.2 directory)
make
./config -d fips (in the 0.9.8k directory)
make
but it said that debug-linux-generic32 was not supported so I figure this is
what I should try:
./Configure debug-linux-elf fipscanisterbuild no-asm (in the FIPS 1.2
directory)
make
./config debug-linux-elf fips (in the 0.9.8k directory)
make
and comment out this code in fips.c (do I do that both the fips module 1.2
and 0.9.8k or one or the other)
if(!FIPS_check_incore_fingerprint())
{
fips_selftest_fail = 1;
ret = 0;
goto end;
}
Is that right?