Re: [openssl-users] How to enable RC4 in OpenSSL 1.1.0c

2017-01-19 Thread Chris Clark
On Thu, Jan 19, 2017 at 10:36 AM, Matt Caswell wrote: > Try this: > > openssl ciphers -v "ALL:@SECLEVEL=0" Okay that worked! Thanks to everyone that responded. I saw Rich Salz mentioned using ALL, but I didn't realize it was a parameter. -Chris -- openssl-users mailing list

Re: [openssl-users] How to enable RC4 in OpenSSL 1.1.0c

2017-01-19 Thread Benjamin Kaduk
On 01/19/2017 11:59 AM, Chris Clark wrote: > Notice it says that dmake.exe is not in my path, but this appears to > be a bug as I am running this from a Visual Studio 2008 x64 Command > Prompt, and nmake.exe is indeed in the path, located in: > c:\Program Files (x86)\Microsoft Visual Studio

Re: [openssl-users] How to enable RC4 in OpenSSL 1.1.0c

2017-01-19 Thread Matt Caswell
On 19/01/17 17:59, Chris Clark wrote: > On Wed, Jan 18, 2017 at 7:01 PM, Viktor Dukhovni > wrote: > >> Sadly this does not shed much light on the build options. > > Here is more info, and now I added the "enable-ssl3" and > "enable-ssl3-method" options: If all you

Re: [openssl-users] How to enable RC4 in OpenSSL 1.1.0c

2017-01-19 Thread Chris Clark
On Wed, Jan 18, 2017 at 7:01 PM, Viktor Dukhovni wrote: > Sadly this does not shed much light on the build options. Here is more info, and now I added the "enable-ssl3" and "enable-ssl3-method" options: c:\openssl-1.1.0c64>perl Configure VC-WIN64A

Re: [openssl-users] How to enable RC4 in OpenSSL 1.1.0c

2017-01-19 Thread Salz, Rich
> Once I compile, and I run "openssl cipher -v" it does not show any RC4 > ciphers. > Is there another parameter needed? In addition to what Viktor said, you need to say "ALL" because RC4 is still not part of DEFAULT. -- openssl-users mailing list To unsubscribe:

Re: [openssl-users] How to enable RC4 in OpenSSL 1.1.0c

2017-01-18 Thread Viktor Dukhovni
> On Jan 18, 2017, at 8:29 PM, Chris Clark wrote: > > OpenSSL 1.1.0c 10 Nov 2016 > built on: reproducible build, date unspecified > platform: > compiler: cl " "VC-WIN64A > OPENSSLDIR: "c:\openssl64" > ENGINESDIR: "C:\openssl64\lib\engines-1_1" Sadly this does not shed

Re: [openssl-users] How to enable RC4 in OpenSSL 1.1.0c

2017-01-18 Thread Chris Clark
On Wed, Jan 18, 2017 at 3:37 PM, Viktor Dukhovni wrote: >> I am trying to compile OpenSSL 1.1.0c for Visual Studio with the > >depreciated RC4 cipher enabled. >> I tried the following configure line: >> perl Configure VC-WIN64A enable-weak-ssl-ciphers

Re: [openssl-users] How to enable RC4 in OpenSSL 1.1.0c

2017-01-18 Thread Viktor Dukhovni
On Wed, Jan 18, 2017 at 03:30:12PM -0800, Chris Clark wrote: > I am trying to compile OpenSSL 1.1.0c for Visual Studio with the > depreciated RC4 cipher enabled. The "Configure" script includes embedded documentation for the available options. # enable-weak-ssl-ciphers #

[openssl-users] How to enable RC4 in OpenSSL 1.1.0c

2017-01-18 Thread Chris Clark
I am trying to compile OpenSSL 1.1.0c for Visual Studio with the depreciated RC4 cipher enabled. I tried the following configure line: perl Configure VC-WIN64A enable-weak-ssl-ciphers enable-deprecated enable-rc4 Once I compile, and I run "openssl cipher -v" it does not show any RC4 ciphers. Is