[issue38550] hashlib missing algorithms

Christian Heimes report at bugs.python.org
Mon Oct 21 13:46:30 EDT 2019


Christian Heimes <lists at cheimes.de> added the comment:

According to OpenSSL documentation it is not necessary to call any init function. All ciphers and all digests are default options.

As of version 1.1.0 OpenSSL will automatically allocate all resources that it needs so no explicit initialisation is required. Similarly it will also automatically deinitialise as required.

OPENSSL_INIT_ADD_ALL_CIPHERS
With this option the library will automatically load and make available all libcrypto ciphers. This option is a default option.

OPENSSL_INIT_ADD_ALL_DIGESTS
With this option the library will automatically load and make available all libcrypto digests. This option is a default option.

https://www.openssl.org/docs/man1.1.0/man3/OPENSSL_init_crypto.html

----------
nosy: +christian.heimes, gregory.p.smith

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue38550>
_______________________________________


More information about the Python-bugs-list mailing list