Re: Building openssl outside of the source tree" doesn't work well

2019-05-20 Thread Richard Levitte
On Tue, 21 May 2019 03:26:41 +0200, dengwenbin_0301 wrote: > > wdeng@pek-dliu4-u1:~/wenbindfiles/openssl/openssl [master]$ cd obj/ > > wdeng@pek-dliu4-u1:~/wenbindfiles/openssl/openssl/obj [master]$ ../config > Operating system: x86_64-whatever-linux2 > Configuring OpenSSL version 3.0.0-dev for

Building openssl outside of the source tree" doesn't work well

2019-05-20 Thread dengwenbin_0301
Dear all, Following the instructions in chapter 1c "Configure OpenSSL for building outside of the source tree." of INSTALL doc, I create "obj" folder under the top directory and try to build in that folder. The result shows some header file for the file app_rand.c is not included. Is this a

Re: Building OpenSSL with Emscripten

2019-05-20 Thread J Decker
https://stackoverflow.com/questions/52327290/linking-openssl-with-webassembly Looks very similar... 'target_link_libraries(mainTest crypto) after that it all worked without warnings.' On Mon, May 20, 2019 at 1:56 AM Richard Levitte wrote: > The issue isn't with any defined or not so defined

OpenSSL 1.1.1b installation

2019-05-20 Thread DeCaro, James John (Jim) CIV DISA SD (US) via openssl-users
Hello, I am working on a Solaris 11.4 x86 64bit virtual server. There are no specific applications loaded on it yet. I am preparing it to be a BIND server eventually. To that end, I downloaded and installed OpenSSL 1.1.1b so I have the latest and greatest to work with. The installation

RE: To get end point's IP address

2019-05-20 Thread Michael Wojcik
> From: openssl-users [mailto:openssl-users-boun...@openssl.org] On Behalf Of > Chethan Kumar > Sent: Monday, May 20, 2019 04:22 > I wanted to log end point’s IP address during some errors in communication > using openssl. > Initially when I tried getpeername() on SSL context, its giving proxy >

To get end point's IP address

2019-05-20 Thread Chethan Kumar
Dear all, I wanted to log end point's IP address during some errors in communication using openssl. What is the best way to know end point's IP address in openssl as many applications use openssl and its not feasible to change in all of them. Initially when I tried getpeername() on SSL context,

Re: Building OpenSSL with Emscripten

2019-05-20 Thread Richard Levitte
The issue isn't with any defined or not so defined macro, but most probably rather with how you're loading the library in the 3rd party code base. Could it be that you're linking with libssl only? Cheers, Richard On Fri, 10 May 2019 22:29:36 +0200, Sunghyun Park wrote: > > Hi, all. Thanks for