Re: Shutting down openssl - is the correct thing to do nothing?

2019-06-14 Thread Matt Caswell
On 14/06/2019 09:17, Graham Leggett wrote: > On 14 Jun 2019, at 09:41, Matt Caswell > wrote: > >> Correct. *All* of the above calls are no-ops in 1.1.0+, e.g: >> >> #  define EVP_cleanup() while(0) continue >> >> There are one or two caveats around auto-init and

Re: Shutting down openssl - is the correct thing to do nothing?

2019-06-14 Thread Graham Leggett
On 14 Jun 2019, at 09:41, Matt Caswell wrote: > Correct. *All* of the above calls are no-ops in 1.1.0+, e.g: > > # define EVP_cleanup() while(0) continue > > There are one or two caveats around auto-init and auto-deinit of the library. > The documentation for it is here: > >

Re: Shutting down openssl - is the correct thing to do nothing?

2019-06-14 Thread Matt Caswell
On 14/06/2019 00:42, Graham Leggett wrote: > Hi all, > > I am currently reviewing the shutdown behaviour in both httpd’s mod_ssl and > apr’s apr-crypto-openssl modules. > > Am I right in understanding that from openssl v1.1.0 and upwards, all the > following calls are no longer necessary,

Shutting down openssl - is the correct thing to do nothing?

2019-06-13 Thread Graham Leggett
Hi all, I am currently reviewing the shutdown behaviour in both httpd’s mod_ssl and apr’s apr-crypto-openssl modules. Am I right in understanding that from openssl v1.1.0 and upwards, all the following calls are no longer necessary, will be called automatically atexit by the openssl library,