Re: "no OPENSSL_Applink " in OpenSSL3.0.5

2022-08-12 Thread Matt Caswell
On 12/08/2022 03:34, Imazu Setsuo wrote: On 2022/08/10 18:44, Matt Caswell wrote: On 10/08/2022 00:11, Imazu Setsuo wrote: Hello, my name is Imazu. I am using OpenSSL3.0.5 to develop a windows program. When I call PEM_read_PrivateKey() I get the following error:

Re: "no OPENSSL_Applink " in OpenSSL3.0.5

2022-08-11 Thread Imazu Setsuo
On 2022/08/10 18:44, Matt Caswell wrote: On 10/08/2022 00:11, Imazu Setsuo wrote: Hello, my name is Imazu. I am using OpenSSL3.0.5 to develop a windows program. When I call PEM_read_PrivateKey() I get the following error: OPENSSL_Uplink(7FF8011DD3E0,08): no OPENSSL_Applink The source

Re: "no OPENSSL_Applink " in OpenSSL3.0.5

2022-08-10 Thread Matt Caswell
On 10/08/2022 00:11, Imazu Setsuo wrote: Hello, my name is Imazu. I am using OpenSSL3.0.5 to develop a windows program. When I call PEM_read_PrivateKey() I get the following error: OPENSSL_Uplink(7FF8011DD3E0,08): no OPENSSL_Applink The source that calls PEM_read_PrivateKey() includes

Re: no OPENSSL_Applink

2014-06-26 Thread lists
Hi, I understand that by no way this is a solution, but I got so frustrated in the past by the _fp issue that I wrote a function that tranfers the file content to RAM (without OpenSSL functions) and then from RAM to a memory BIO, so it's easily to manage. The side advantage is that the code

RE: No OPENSSL_Applink

2014-06-10 Thread Dave Thompson
From: owner-openssl-us...@openssl.org On Behalf Of open...@comaxis.com Sent: Saturday, June 07, 2014 09:35 I am attempting to use the d2i_PKCS12_fp() API call in a Windows DLL compiled with the multi-threaded (/MT) runtime library. On this call I get the runtime error

Re: no OPENSSL_Applink in my DLL

2014-04-06 Thread Larry Bugbee
I wish you good luck.  I was unsuccessful.   Be sure to ask why not.   For more google applink.c+bugbee -- Sent fm iTouch via Boxer On April 2, 2014 at 11:45:44 AM PDT, Mohan Kumar mohan...@gmail.com wrote:Hi, I am writing a DLL plugin which works with a third party plugin. The DLL uses

RE: no OPENSSL_Applink in my DLL

2014-04-03 Thread Dave Thompson
1. Modify the uplink logic to hardcode your DLL, and make sure your users' programs never call this modified openssl, probably by using a nonstandard filename(s), and then stand ready to provide updates every few months. 2. Rewrite the uplink logic to figure out which DLL is providing the

Re: no OpenSSL_Applink in Custom Windows Credentials Provider

2013-01-23 Thread Jakob Bohm
On 1/22/2013 12:33 AM, Dave Thompson wrote: From: owner-openssl-us...@openssl.org On Behalf Of PA3MEP Sent: Sunday, 20 January, 2013 11:13 I`am creating a Custom Credentials Provider for Windows 7/8, which uses axis2c library with openSSL support to communicate with SOAP service, which

RE: no OpenSSL_Applink in Custom Windows Credentials Provider

2013-01-21 Thread Dave Thompson
From: owner-openssl-us...@openssl.org On Behalf Of PA3MEP Sent: Sunday, 20 January, 2013 11:13 I`am creating a Custom Credentials Provider for Windows 7/8, which uses axis2c library with openSSL support to communicate with SOAP service, which provides authentification information. I