diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-01-13 17:04:30 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-01-13 17:04:30 +0000 |
commit | b54be0be7a983883ffcd543adeb2908ec491ec4a (patch) | |
tree | 45b6b1eeaf2f72607c7c0f453db4c973737e11f8 /lib | |
parent | 17d2cdacb0e4fa0c64680b62cad88e4e8df60c50 (diff) |
Remove calls to OpenSSL_add_all_{ciphers,digests}()
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/crypto_init.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libcrypto/crypto_init.c b/lib/libcrypto/crypto_init.c index d598318503c..ed92c410c68 100644 --- a/lib/libcrypto/crypto_init.c +++ b/lib/libcrypto/crypto_init.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crypto_init.c,v 1.16 2024/01/13 11:18:52 tb Exp $ */ +/* $OpenBSD: crypto_init.c,v 1.17 2024/01/13 17:04:29 tb Exp $ */ /* * Copyright (c) 2018 Bob Beck <beck@openbsd.org> * @@ -44,8 +44,6 @@ OPENSSL_init_crypto_internal(void) OPENSSL_cpuid_setup(); ERR_load_crypto_strings(); - OpenSSL_add_all_ciphers(); - OpenSSL_add_all_digests(); } int |