#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
EXIT(0);
return 0;
}
+
+#endif
#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
EXIT(0);
return 0;
}
+
+#endif