summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/m_sha3.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/evp/m_sha3.c')
-rw-r--r--src/lib/libcrypto/evp/m_sha3.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libcrypto/evp/m_sha3.c b/src/lib/libcrypto/evp/m_sha3.c
index 9137629823..67f94f7956 100644
--- a/src/lib/libcrypto/evp/m_sha3.c
+++ b/src/lib/libcrypto/evp/m_sha3.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: m_sha3.c,v 1.2 2023/07/07 13:54:45 beck Exp $ */ 1/* $OpenBSD: m_sha3.c,v 1.3 2023/07/07 19:37:53 beck Exp $ */
2/* 2/*
3 * Copyright (c) 2023 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2023 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -57,7 +57,6 @@ EVP_sha3_224(void)
57{ 57{
58 return &sha3_224_md; 58 return &sha3_224_md;
59} 59}
60LCRYPTO_ALIAS(EVP_sha3_224);
61 60
62static int 61static int
63sha3_256_init(EVP_MD_CTX *ctx) 62sha3_256_init(EVP_MD_CTX *ctx)
@@ -96,7 +95,6 @@ EVP_sha3_256(void)
96{ 95{
97 return &sha3_256_md; 96 return &sha3_256_md;
98} 97}
99LCRYPTO_ALIAS(EVP_sha3_256);
100 98
101static int 99static int
102sha3_384_init(EVP_MD_CTX *ctx) 100sha3_384_init(EVP_MD_CTX *ctx)
@@ -135,7 +133,6 @@ EVP_sha3_384(void)
135{ 133{
136 return &sha3_384_md; 134 return &sha3_384_md;
137} 135}
138LCRYPTO_ALIAS(EVP_sha3_384);
139 136
140static int 137static int
141sha3_512_init(EVP_MD_CTX *ctx) 138sha3_512_init(EVP_MD_CTX *ctx)
@@ -174,4 +171,3 @@ EVP_sha3_512(void)
174{ 171{
175 return &sha3_512_md; 172 return &sha3_512_md;
176} 173}
177LCRYPTO_ALIAS(EVP_sha3_512);