aboutsummaryrefslogtreecommitdiff
path: root/openssl/crypto/sha/sha256.c
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/crypto/sha/sha256.c')
-rw-r--r--openssl/crypto/sha/sha256.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openssl/crypto/sha/sha256.c b/openssl/crypto/sha/sha256.c
index 8952d8767..f88d3d6da 100644
--- a/openssl/crypto/sha/sha256.c
+++ b/openssl/crypto/sha/sha256.c
@@ -16,7 +16,7 @@
const char SHA256_version[]="SHA-256" OPENSSL_VERSION_PTEXT;
-int SHA224_Init (SHA256_CTX *c)
+fips_md_init_ctx(SHA224, SHA256)
{
memset (c,0,sizeof(*c));
c->h[0]=0xc1059ed8UL; c->h[1]=0x367cd507UL;
@@ -27,7 +27,7 @@ int SHA224_Init (SHA256_CTX *c)
return 1;
}
-int SHA256_Init (SHA256_CTX *c)
+fips_md_init(SHA256)
{
memset (c,0,sizeof(*c));
c->h[0]=0x6a09e667UL; c->h[1]=0xbb67ae85UL;