make update
[openssl.git] / crypto / evp / m_ecdsa.c
index 1e64a593bf53100c74affca3a87c529dbf41d810..a6ed24b0b68f69b557bb511a5fd393c70c5ca4a8 100644 (file)
 #include <openssl/x509.h>
 
 #ifndef OPENSSL_NO_SHA
-#ifdef OPENSSL_FIPS
-#include <openssl/fips.h>
-
-const EVP_MD *EVP_ecdsa(void) { return FIPS_evp_ecdsa(); }
-
-#else
 
 static int init(EVP_MD_CTX *ctx)
        { return SHA1_Init(ctx->md_data); }
@@ -153,4 +147,3 @@ const EVP_MD *EVP_ecdsa(void)
        return(&ecdsa_md);
        }
 #endif
-#endif