diff options
author | beck <> | 2024-04-09 13:52:42 +0000 |
---|---|---|
committer | beck <> | 2024-04-09 13:52:42 +0000 |
commit | b8c1a99fdb41738feb7a1352029c5f5aa42fed86 (patch) | |
tree | b9ee99887d6be79187ba476e0f6ac92f0820775f /src/lib/libcrypto/evp/e_des.c | |
parent | 94d86681cdef7dae37d5ce494a200523ce63b70c (diff) | |
download | openbsd-b8c1a99fdb41738feb7a1352029c5f5aa42fed86.tar.gz openbsd-b8c1a99fdb41738feb7a1352029c5f5aa42fed86.tar.bz2 openbsd-b8c1a99fdb41738feb7a1352029c5f5aa42fed86.zip |
Hide public symbols in evp.h
largely mechanically done by the guentherizer 9000
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, 7 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/e_des.c b/src/lib/libcrypto/evp/e_des.c index 7a0b24c1ab..fb335e95b1 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.23 2024/01/04 17:38:36 tb Exp $ */ | 1 | /* $OpenBSD: e_des.c,v 1.24 2024/04/09 13:52:41 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 | * |
@@ -241,6 +241,7 @@ EVP_des_cbc(void) | |||
241 | { | 241 | { |
242 | return &des_cbc; | 242 | return &des_cbc; |
243 | } | 243 | } |
244 | LCRYPTO_ALIAS(EVP_des_cbc); | ||
244 | 245 | ||
245 | static const EVP_CIPHER des_cfb64 = { | 246 | static const EVP_CIPHER des_cfb64 = { |
246 | .nid = NID_des_cfb64, | 247 | .nid = NID_des_cfb64, |
@@ -262,6 +263,7 @@ EVP_des_cfb64(void) | |||
262 | { | 263 | { |
263 | return &des_cfb64; | 264 | return &des_cfb64; |
264 | } | 265 | } |
266 | LCRYPTO_ALIAS(EVP_des_cfb64); | ||
265 | 267 | ||
266 | static const EVP_CIPHER des_ofb = { | 268 | static const EVP_CIPHER des_ofb = { |
267 | .nid = NID_des_ofb64, | 269 | .nid = NID_des_ofb64, |
@@ -283,6 +285,7 @@ EVP_des_ofb(void) | |||
283 | { | 285 | { |
284 | return &des_ofb; | 286 | return &des_ofb; |
285 | } | 287 | } |
288 | LCRYPTO_ALIAS(EVP_des_ofb); | ||
286 | 289 | ||
287 | static const EVP_CIPHER des_ecb = { | 290 | static const EVP_CIPHER des_ecb = { |
288 | .nid = NID_des_ecb, | 291 | .nid = NID_des_ecb, |
@@ -304,6 +307,7 @@ EVP_des_ecb(void) | |||
304 | { | 307 | { |
305 | return &des_ecb; | 308 | return &des_ecb; |
306 | } | 309 | } |
310 | LCRYPTO_ALIAS(EVP_des_ecb); | ||
307 | 311 | ||
308 | static const EVP_CIPHER des_cfb1 = { | 312 | static const EVP_CIPHER des_cfb1 = { |
309 | .nid = NID_des_cfb1, | 313 | .nid = NID_des_cfb1, |
@@ -325,6 +329,7 @@ EVP_des_cfb1(void) | |||
325 | { | 329 | { |
326 | return &des_cfb1; | 330 | return &des_cfb1; |
327 | } | 331 | } |
332 | LCRYPTO_ALIAS(EVP_des_cfb1); | ||
328 | 333 | ||
329 | static const EVP_CIPHER des_cfb8 = { | 334 | static const EVP_CIPHER des_cfb8 = { |
330 | .nid = NID_des_cfb8, | 335 | .nid = NID_des_cfb8, |
@@ -346,4 +351,5 @@ EVP_des_cfb8(void) | |||
346 | { | 351 | { |
347 | return &des_cfb8; | 352 | return &des_cfb8; |
348 | } | 353 | } |
354 | LCRYPTO_ALIAS(EVP_des_cfb8); | ||
349 | #endif | 355 | #endif |