Re: Reg: Building Openssl 1.1.1b for Borland

2019-04-25 Thread Richard Levitte
On Fri, 26 Apr 2019 07:05:01 +0200, Ande Vishnuvardhan Reddy wrote: > We would like to build Openssl 1.1.1b with Borland compiler (bcc32 - > Embarcadero C++ 7.40). Seems > support for Borland is removed from 1.1.x . It was dropped, that's true. The main reason was lack of docs (or not being able

Reg: Building Openssl 1.1.1b for Borland

2019-04-25 Thread Ande Vishnuvardhan Reddy
Hi, We would like to build Openssl 1.1.1b with Borland compiler (bcc32 - Embarcadero C++ 7.40). Seems support for Borland is removed from 1.1.x . Could you please help in building Openssl 1.1.1b with Borland? Please suggest what are the conf files to be added to generate makefile. Thanks in adva

Re: Self signed cert authorization

2019-04-25 Thread Phillip Susi
Jakob Bohm via openssl-users writes: > 2. cd to /etc/ssl/certs and run the command > /etc/sssl/certs# c_rehash > (This updates the numeric symlinks to certificates so openssl can > more easily find them). Thanks, I ended up finding c_rehash and that did the trick.

Re: Self signed cert authorization

2019-04-25 Thread Hubert Kario
On Wednesday, 24 April 2019 21:58:30 CEST Phillip Susi wrote: > I've been trying to convince git send-email to connect to my personal > smtp server without success. It keeps complaining that the cert is > self-signed. I thought all I had to do was add the cert to > /etc/ssl/certs and that should

Re: Where to copy custom openssl engine library in openssl 1.1.0

2019-04-25 Thread Dmitry Belyavsky
Hello, On Thu, Apr 25, 2019 at 11:36 AM Swamy J-S wrote: > Hi, Thanks for reply. I have a doubt here. Which config file you are > referring too? Is there any file called “*config*” which is already > existing somewhere or should I create a dummy file called config? > > > > Just now I created a d

RE: Where to copy custom openssl engine library in openssl 1.1.0

2019-04-25 Thread Swamy J-S
Hi, Thanks for reply. I have a doubt here. Which config file you are referring too? Is there any file called “config” which is already existing somewhere or should I create a dummy file called config? Just now I created a dummy file “config” and added the details you sent in this file. Also ad

Re: Where to copy custom openssl engine library in openssl 1.1.0

2019-04-25 Thread Dmitry Belyavsky
Hello, You should load your engine via config file. It may look like = openssl_conf = openssl_def [openssl_def] engines = engine_section [engine_section] storeengine = store_section [store_section] engine_id = store dynamic_path = /usr/local/lib/engines/storeengine.so Your applic

Where to copy custom openssl engine library in openssl 1.1.0

2019-04-25 Thread Swamy J-S
Am working in Ubuntu 18.04 with openssl 1.1.0g version. I built a custom openssl engine and now i want to use this engine instead of default openssl engine. My engine library name is libstoreengine.so and i copied this to /usr/lib/x86_64-linux-gnu/openssl-1.0.0/engines/ path. When i run my a