diff options
author | tb <> | 2024-01-13 17:04:29 +0000 |
---|---|---|
committer | tb <> | 2024-01-13 17:04:29 +0000 |
commit | 7aacc564df727aea5aea18d8b3e9d064cc9c63c8 (patch) | |
tree | 109979a7df4185f32760c5348f310dfbaf357939 | |
parent | a6d1bdcf704cf50d9c3354d47cf947df92d946f1 (diff) | |
download | openbsd-7aacc564df727aea5aea18d8b3e9d064cc9c63c8.tar.gz openbsd-7aacc564df727aea5aea18d8b3e9d064cc9c63c8.tar.bz2 openbsd-7aacc564df727aea5aea18d8b3e9d064cc9c63c8.zip |
Remove calls to OpenSSL_add_all_{ciphers,digests}()
-rw-r--r-- | src/lib/libcrypto/crypto_init.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libcrypto/crypto_init.c b/src/lib/libcrypto/crypto_init.c index d598318503..ed92c410c6 100644 --- a/src/lib/libcrypto/crypto_init.c +++ b/src/lib/libcrypto/crypto_init.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: crypto_init.c,v 1.16 2024/01/13 11:18:52 tb Exp $ */ | 1 | /* $OpenBSD: crypto_init.c,v 1.17 2024/01/13 17:04:29 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018 Bob Beck <beck@openbsd.org> | 3 | * Copyright (c) 2018 Bob Beck <beck@openbsd.org> |
4 | * | 4 | * |
@@ -44,8 +44,6 @@ OPENSSL_init_crypto_internal(void) | |||
44 | 44 | ||
45 | OPENSSL_cpuid_setup(); | 45 | OPENSSL_cpuid_setup(); |
46 | ERR_load_crypto_strings(); | 46 | ERR_load_crypto_strings(); |
47 | OpenSSL_add_all_ciphers(); | ||
48 | OpenSSL_add_all_digests(); | ||
49 | } | 47 | } |
50 | 48 | ||
51 | int | 49 | int |