We currently define FIPS, not OPENSSL_FIPS. The reason for this is

(probably) that FIPS is an entirely internal macro, and is not
accessible by third-party authors.
This commit is contained in:
Richard Levitte 2003-09-10 09:05:06 +00:00
parent ad6eec30a3
commit b2f94f81e1
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@
#include <openssl/fips.h>
#include <openssl/fips_rand.h>
#if defined(OPENSSL_NO_DSA) || !defined(OPENSSL_FIPS)
#if defined(OPENSSL_NO_DSA) || !defined(FIPS)
int main(int argc, char *argv[])
{
printf("No FIPS DSA support\n");

View File

@ -110,7 +110,7 @@
#include "../e_os.h"
#ifndef OPENSSL_FIPS
#ifndef FIPS
int main(int argc, char *argv[])
{
printf("No FIPS RAND support\n");