Use OPENSSL_FIPS instead of FIPS.

This commit is contained in:
Richard Levitte
2003-09-25 12:24:52 +00:00
parent 2667b068a1
commit 3b84ce3b6f
29 changed files with 47 additions and 46 deletions

View File

@@ -80,7 +80,7 @@
#include <openssl/rand.h>
#include <openssl/sha.h>
#ifndef FIPS
#ifndef OPENSSL_FIPS
DSA *DSA_generate_parameters(int bits,
unsigned char *seed_in, int seed_len,
int *counter_ret, unsigned long *h_ret,
@@ -294,6 +294,6 @@ err:
if (mont != NULL) BN_MONT_CTX_free(mont);
return(ok?ret:NULL);
}
#endif /* ndef FIPS */
#endif /* ndef OPENSSL_FIPS */
#endif /* ndef OPENSSL_NO_SHA */