diff options
Diffstat (limited to 'src/lib/libcrypto/evp/m_sha3.c')
-rw-r--r-- | src/lib/libcrypto/evp/m_sha3.c | 6 |
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 | } |
60 | LCRYPTO_ALIAS(EVP_sha3_224); | ||
61 | 60 | ||
62 | static int | 61 | static int |
63 | sha3_256_init(EVP_MD_CTX *ctx) | 62 | sha3_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 | } |
99 | LCRYPTO_ALIAS(EVP_sha3_256); | ||
100 | 98 | ||
101 | static int | 99 | static int |
102 | sha3_384_init(EVP_MD_CTX *ctx) | 100 | sha3_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 | } |
138 | LCRYPTO_ALIAS(EVP_sha3_384); | ||
139 | 136 | ||
140 | static int | 137 | static int |
141 | sha3_512_init(EVP_MD_CTX *ctx) | 138 | sha3_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 | } |
177 | LCRYPTO_ALIAS(EVP_sha3_512); | ||