Re: multiple calls to OpenSSL_add_all_algorithms

2014-10-25 Thread Joel Sing
On Thu, 23 Oct 2014, Martijn van Duren wrote: Hello misc@, I'm currently trying to write a library that heavily relies on libcrypto. Because I don't want applications linking to it, to have to call OpenSSL_add_all_algorithms, for convenience, I added those calls to the appropriate places in

Re: multiple calls to OpenSSL_add_all_algorithms

2014-10-24 Thread Martijn van Duren
On 10/23/14 11:33, Stuart Henderson wrote: On 2014-10-22, Martijn van Duren martijn...@gmail.com wrote: I'm currently trying to write a library that heavily relies on libcrypto. Because I don't want applications linking to it, to have to call OpenSSL_add_all_algorithms, for convenience, I added

Re: multiple calls to OpenSSL_add_all_algorithms

2014-10-24 Thread Ted Unangst
On Sat, Oct 25, 2014 at 07:00, Martijn van Duren wrote: On 10/23/14 11:33, Stuart Henderson wrote: On 2014-10-22, Martijn van Duren martijn...@gmail.com wrote: I'm currently trying to write a library that heavily relies on libcrypto. Because I don't want applications linking to it, to have to

Re: multiple calls to OpenSSL_add_all_algorithms

2014-10-23 Thread Stuart Henderson
On 2014-10-22, Martijn van Duren martijn...@gmail.com wrote: I'm currently trying to write a library that heavily relies on libcrypto. Because I don't want applications linking to it, to have to call OpenSSL_add_all_algorithms, for convenience, I added those calls to the appropriate places

Re: multiple calls to OpenSSL_add_all_algorithms

2014-10-23 Thread Martijn van Duren
On 10/23/14 11:33, Stuart Henderson wrote: On 2014-10-22, Martijn van Duren martijn...@gmail.com wrote: I'm currently trying to write a library that heavily relies on libcrypto. Because I don't want applications linking to it, to have to call OpenSSL_add_all_algorithms, for convenience, I

multiple calls to OpenSSL_add_all_algorithms

2014-10-22 Thread Martijn van Duren
Hello misc@, I'm currently trying to write a library that heavily relies on libcrypto. Because I don't want applications linking to it, to have to call OpenSSL_add_all_algorithms, for convenience, I added those calls to the appropriate places in my library. Because of this nature, the