Make FIPS algorithm tests compile in none-FIPS mode.

This commit is contained in:
Dr. Stephen Henson 2007-01-21 13:59:17 +00:00
parent b1fa6d01f5
commit 2a4684e7fd
2 changed files with 24 additions and 0 deletions

View File

@ -70,6 +70,16 @@
#include <openssl/err.h>
#include "e_os.h"
#ifndef OPENSSL_FIPS
int main(int argc, char *argv[])
{
printf("No FIPS DES support\n");
return(0);
}
#else
#define AES_BLOCK_SIZE 16
#define VERBOSE 1
@ -1061,3 +1071,5 @@ int main(int argc, char **argv)
EXIT(0);
return 0;
}
#endif

View File

@ -71,6 +71,16 @@
#include <openssl/err.h>
#include "e_os.h"
#ifndef OPENSSL_FIPS
int main(int argc, char *argv[])
{
printf("No FIPS DES support\n");
return(0);
}
#else
/* To avoid extensive changes to test program at this stage just convert
* the input line into an acceptable form. Keyword lines converted to form
* "keyword = value\n" no matter what white space present, all other lines
@ -888,3 +898,5 @@ int main(int argc, char **argv)
EXIT(0);
return 0;
}
#endif