Redirect FIPS memory allocation to FIPS_malloc() routine, remove
[openssl.git] / crypto / dsa / dsa_sign.c
index e02365a8b133248f0e9a2cb7c0c555841bc7bb3e..3684960203de42c3443a0b31752b2be894025362 100644 (file)
 #include <openssl/rand.h>
 #include <openssl/bn.h>
 
+#define OPENSSL_FIPSAPI
+#ifdef OPENSSL_FIPS
+#include <openssl/fips.h>
+#endif
+
 DSA_SIG * DSA_do_sign(const unsigned char *dgst, int dlen, DSA *dsa)
        {
        return dsa->meth->dsa_do_sign(dgst, dlen, dsa);