diff options
author | beck <> | 2023-07-07 19:37:54 +0000 |
---|---|---|
committer | beck <> | 2023-07-07 19:37:54 +0000 |
commit | 8d42940c1d19bb9bd4ce45580f18a59069225432 (patch) | |
tree | b1fe16b4625998f0f024f4d3eef5d59a3e905a9a /src/lib/libcrypto/evp/e_des.c | |
parent | 1c5e77a1d6f97589e2bca622f3313c1418f9a535 (diff) | |
download | openbsd-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/e_des.c')
-rw-r--r-- | src/lib/libcrypto/evp/e_des.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/lib/libcrypto/evp/e_des.c b/src/lib/libcrypto/evp/e_des.c index c87de1a690..64d098ca14 100644 --- a/src/lib/libcrypto/evp/e_des.c +++ b/src/lib/libcrypto/evp/e_des.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: e_des.c,v 1.21 2023/07/07 13:54:45 beck Exp $ */ | 1 | /* $OpenBSD: e_des.c,v 1.22 2023/07/07 19:37:53 beck Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -242,7 +242,6 @@ EVP_des_cbc(void) | |||
242 | { | 242 | { |
243 | return &des_cbc; | 243 | return &des_cbc; |
244 | } | 244 | } |
245 | LCRYPTO_ALIAS(EVP_des_cbc); | ||
246 | 245 | ||
247 | static const EVP_CIPHER des_cfb64 = { | 246 | static const EVP_CIPHER des_cfb64 = { |
248 | .nid = NID_des_cfb64, | 247 | .nid = NID_des_cfb64, |
@@ -265,7 +264,6 @@ EVP_des_cfb64(void) | |||
265 | { | 264 | { |
266 | return &des_cfb64; | 265 | return &des_cfb64; |
267 | } | 266 | } |
268 | LCRYPTO_ALIAS(EVP_des_cfb64); | ||
269 | 267 | ||
270 | static const EVP_CIPHER des_ofb = { | 268 | static const EVP_CIPHER des_ofb = { |
271 | .nid = NID_des_ofb64, | 269 | .nid = NID_des_ofb64, |
@@ -288,7 +286,6 @@ EVP_des_ofb(void) | |||
288 | { | 286 | { |
289 | return &des_ofb; | 287 | return &des_ofb; |
290 | } | 288 | } |
291 | LCRYPTO_ALIAS(EVP_des_ofb); | ||
292 | 289 | ||
293 | static const EVP_CIPHER des_ecb = { | 290 | static const EVP_CIPHER des_ecb = { |
294 | .nid = NID_des_ecb, | 291 | .nid = NID_des_ecb, |
@@ -311,7 +308,6 @@ EVP_des_ecb(void) | |||
311 | { | 308 | { |
312 | return &des_ecb; | 309 | return &des_ecb; |
313 | } | 310 | } |
314 | LCRYPTO_ALIAS(EVP_des_ecb); | ||
315 | 311 | ||
316 | static const EVP_CIPHER des_cfb1 = { | 312 | static const EVP_CIPHER des_cfb1 = { |
317 | .nid = NID_des_cfb1, | 313 | .nid = NID_des_cfb1, |
@@ -334,7 +330,6 @@ EVP_des_cfb1(void) | |||
334 | { | 330 | { |
335 | return &des_cfb1; | 331 | return &des_cfb1; |
336 | } | 332 | } |
337 | LCRYPTO_ALIAS(EVP_des_cfb1); | ||
338 | 333 | ||
339 | static const EVP_CIPHER des_cfb8 = { | 334 | static const EVP_CIPHER des_cfb8 = { |
340 | .nid = NID_des_cfb8, | 335 | .nid = NID_des_cfb8, |
@@ -357,5 +352,4 @@ EVP_des_cfb8(void) | |||
357 | { | 352 | { |
358 | return &des_cfb8; | 353 | return &des_cfb8; |
359 | } | 354 | } |
360 | LCRYPTO_ALIAS(EVP_des_cfb8); | ||
361 | #endif | 355 | #endif |