+#include <openssl/opensslconf.h>
+
+#ifndef OPENSSL_FIPS
+#include <stdio.h>
+
+int main()
+{
+ printf("No FIPS DSA support\n");
+ return(0);
+}
+#else
+
#include <openssl/bn.h>
#include <openssl/dsa.h>
#include <openssl/fips.h>
return 0;
}
+#endif
* NIST document "The Random Number Generator Validation System (RNGVS)", May 25, 2004.\r
*\r
*/\r
+#include <openssl/opensslconf.h>\r
+\r
+#ifndef OPENSSL_FIPS\r
+#include <stdio.h>\r
+int main()\r
+{\r
+ printf("No FIPS RNG support\n");\r
+ exit(0);\r
+}\r
+#else\r
\r
#include <openssl/bn.h>\r
#include <openssl/dsa.h>\r
\r
return 0;\r
}\r
+#endif\r