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:
parent
ad6eec30a3
commit
b2f94f81e1
@ -74,7 +74,7 @@
|
|||||||
#include <openssl/fips.h>
|
#include <openssl/fips.h>
|
||||||
#include <openssl/fips_rand.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[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
printf("No FIPS DSA support\n");
|
printf("No FIPS DSA support\n");
|
||||||
|
@ -110,7 +110,7 @@
|
|||||||
|
|
||||||
#include "../e_os.h"
|
#include "../e_os.h"
|
||||||
|
|
||||||
#ifndef OPENSSL_FIPS
|
#ifndef FIPS
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
printf("No FIPS RAND support\n");
|
printf("No FIPS RAND support\n");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user