Update DTLS code to match CBC decoding in TLS.
[oweals/openssl.git] / crypto / dsa / dsa_key.c
index c4aa86bc6dce4eb7f2e034fe8486444acd410f81..5e3912423014caf37ed9912f1c55886920bd8ca5 100644 (file)
@@ -64,6 +64,8 @@
 #include <openssl/dsa.h>
 #include <openssl/rand.h>
 
+#ifndef OPENSSL_FIPS
+
 static int dsa_builtin_keygen(DSA *dsa);
 
 int DSA_generate_key(DSA *dsa)
@@ -126,3 +128,5 @@ err:
        return(ok);
        }
 #endif
+
+#endif