Re: [openssl-users] What to do with deprecation errors

2018-10-20 Thread Blumenthal, Uri - 0553 - MITLL
On 10/20/2018, 21:41, "openssl-users on behalf of Skip Carter" wrote: Yes, that works just fine for me too. But if I include ssl.h I have the problem. The various DEPRECATED.. macros don't get pre-compiled and get handed to the compiler. I think I improperly installed the

Re: [openssl-users] What to do with deprecation errors

2018-10-20 Thread Salz, Rich via openssl-users
You probably do not have the headers installed into the right include path. You should do "make install" and not cp things by hand, as you'll need the headers and the libraries, etc. -- openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

Re: [openssl-users] What to do with deprecation errors

2018-10-20 Thread Skip Carter
Uri, Yes, that works just fine for me too. But if I include ssl.h I have the problem. The various DEPRECATED.. macros don't get pre-compiled and get handed to the compiler. I think I improperly installed the headers. On Sun, 2018-10-21 at 00:36 +, Blumenthal, Uri - 0553 - MITLL wrote: >

Re: [openssl-users] What to do with deprecation errors

2018-10-20 Thread Blumenthal, Uri - 0553 - MITLL
I'm not sure I understand what you're doing, but: $ cat ttt.c #include #include int main(void) { printf("OPENSSL_VERSION_NUMBER %lx\n",OPENSSL_VERSION_NUMBER); return 0; } $ gcc -o ttt ttt.c -lcrypto $ ./ttt OPENSSL_VERSION_NUMBER 1000210f $ gcc -o ttt -I$HOME/openssl-1.1/include ttt.c

Re: [openssl-users] What to do with deprecation errors

2018-10-20 Thread Skip Carter
All, I am thinking that the DEPRECATED... macros are not expanded by the pre-parser so the compiler sees them as a weirdly formed function and doesn't like it. I "installed" the header files with 'cp' was there a make command that I was supposed to use ? On Fri, 2018-10-19 at 16:54 -0700,

Re: [openssl-users] To disable CBC ciphers

2018-10-20 Thread Kaushal Shriyan
On Wed, Oct 17, 2018 at 7:00 PM murugesh pitchaiah < murugesh.pitcha...@gmail.com> wrote: > Hi, > > You may list down what ciphers configured : "openssl ciphers" > Choose CBC ciphers and add them to the list of 'ssl_ciphers' with "!" > prefix appended to current ssl_ciphers. > > > ssl_ciphers