aboutsummaryrefslogtreecommitdiff
path: root/openssl/crypto/evp/m_sha1.c
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/crypto/evp/m_sha1.c')
-rw-r--r--openssl/crypto/evp/m_sha1.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/openssl/crypto/evp/m_sha1.c b/openssl/crypto/evp/m_sha1.c
index 9a2790fde..3cb11f1eb 100644
--- a/openssl/crypto/evp/m_sha1.c
+++ b/openssl/crypto/evp/m_sha1.c
@@ -59,6 +59,8 @@
#include <stdio.h>
#include "cryptlib.h"
+#ifndef OPENSSL_FIPS
+
#ifndef OPENSSL_NO_SHA
#include <openssl/evp.h>
@@ -68,6 +70,7 @@
#include <openssl/rsa.h>
#endif
+
static int init(EVP_MD_CTX *ctx)
{ return SHA1_Init(ctx->md_data); }
@@ -202,3 +205,5 @@ static const EVP_MD sha512_md=
const EVP_MD *EVP_sha512(void)
{ return(&sha512_md); }
#endif /* ifndef OPENSSL_NO_SHA512 */
+
+#endif