summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/m_sha3.c
diff options
context:
space:
mode:
authorbeck <>2023-07-07 19:37:54 +0000
committerbeck <>2023-07-07 19:37:54 +0000
commit8d42940c1d19bb9bd4ce45580f18a59069225432 (patch)
treeb1fe16b4625998f0f024f4d3eef5d59a3e905a9a /src/lib/libcrypto/evp/m_sha3.c
parent1c5e77a1d6f97589e2bca622f3313c1418f9a535 (diff)
downloadopenbsd-8d42940c1d19bb9bd4ce45580f18a59069225432.tar.gz
openbsd-8d42940c1d19bb9bd4ce45580f18a59069225432.tar.bz2
openbsd-8d42940c1d19bb9bd4ce45580f18a59069225432.zip
Unbreak the namespace build after a broken mk.conf and tool misfire had
me aliasing symbols not in the headers I was procesing. This unbreaks the namespace build so it will pass again ok tb@
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);