aboutsummaryrefslogtreecommitdiff
path: root/crypto/evp/m_sha.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/evp/m_sha.c')
-rw-r--r--crypto/evp/m_sha.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/evp/m_sha.c b/crypto/evp/m_sha.c
index fc7143e..42309eb 100644
--- a/crypto/evp/m_sha.c
+++ b/crypto/evp/m_sha.c
@@ -63,7 +63,7 @@
#include <openssl/objects.h>
#include <openssl/x509.h>
-static EVP_MD sha_md=
+static const EVP_MD sha_md=
{
NID_sha,
NID_shaWithRSAEncryption,
@@ -76,7 +76,7 @@ static EVP_MD sha_md=
sizeof(EVP_MD *)+sizeof(SHA_CTX),
};
-EVP_MD *EVP_sha(void)
+const EVP_MD *EVP_sha(void)
{
return(&sha_md);
}