Re: [openssl-users] how to control the cipher list of an openssl server

2018-03-14 Thread Nitin Mutkawoa
Hello I wish to add some additional information. Perhaps it's useful to you. As Matt mentioned check out your ciphers. --> *openssl ciphers -v* You can also grep a particular cipher for example TLS. *openssl "ciphers" -v | grep i tls* So basically, you might need to check if you have the right v

Re: [openssl-users] how to control the cipher list of an openssl server

2018-03-12 Thread Matt Caswell
On 12/03/18 22:53, Chris Bare wrote: > I have a fairly basic server set up based on various examples I've seen. > > I run an nmap script I found against it and see only 16 ciphers listed, > none of which are supported by modern web browsers. > Yet when I run "openssl ciphers I get a list of 97.

[openssl-users] how to control the cipher list of an openssl server

2018-03-12 Thread Chris Bare
I have a fairly basic server set up based on various examples I've seen. I run an nmap script I found against it and see only 16 ciphers listed, none of which are supported by modern web browsers. Yet when I run "openssl ciphers I get a list of 97. I realize some of these are old and deprecated e

[openssl-users] SSL cipher list to disable TLS 1.0 & TLS 1.1

2017-03-26 Thread Hema Murthy
Hi, My system is FreeBSD 10.2 OpenSSL 1.0.2h lighttpd :lighttpd-1.4.23 Am trying to disable TLS1.0 and TLS1.1 through lighttpd.conf but am not sure of what is the equivalent cipher list to be used. I followed the below link and it didnt work for me. In case of Appweb Server,I was able to

Re: [openssl-users] How to sort cipher list by ephemeral/non-ephemeral?

2016-11-07 Thread Salz, Rich
You can't do it with keywords. Be explicit about what you want and put it in the order you want. That way you will not be surprised when the expansion of a keyword changes. >From your list, ECDHE first, then decide RSA/ECDSA. Then AES-GCM. Why do you >care about sha384 vs 256? Do you really

[openssl-users] How to sort cipher list by ephemeral/non-ephemeral?

2016-11-07 Thread Jeffrey Walton
I prefer to use a cipher list like "HIGH:!aNULL:!RC4:!MD5". I prefer it because its fairly easy to parse and understand. Its also easy to teach to developers. I want the resulting ciphers sorted with the ephemeral suites at the head of the list. How does one sort the list with epheme

RE: cipher list experiments - what's preventing ECDHE?

2014-06-26 Thread mclellan, dave
+-+-+-+-+-+-+-+-+- -Original Message- From: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org] On Behalf Of Viktor Dukhovni Sent: Thursday, June 26, 2014 9:46 AM To: OpenSSL Users List Subject: Re: cipher list experiments - what's preventing ECDHE? On Thu, Jun 26, 2014

RE: cipher list experiments - what's preventing ECDHE?

2014-06-26 Thread mclellan, dave
ne 26, 2014 9:29 AM To: openssl-users@openssl.org Subject: Re: cipher list experiments - what's preventing ECDHE? On Thu, Jun 26, 2014, mclellan, dave wrote: > I'm doing some experimentation with cipher lists using OpenSSL 1.0.1h. I > have two peers using the same libraries,

RE: cipher list experiments - what's preventing ECDHE?

2014-06-26 Thread mclellan, dave
al Message- From: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org] On Behalf Of Jeffrey Walton Sent: Thursday, June 26, 2014 9:31 AM To: OpenSSL Users List Subject: Re: cipher list experiments - what's preventing ECDHE? On Thu, Jun 26, 2014 at 8:51 AM, mclellan, dav

Re: cipher list experiments - what's preventing ECDHE?

2014-06-26 Thread Viktor Dukhovni
On Thu, Jun 26, 2014 at 09:30:49AM -0400, Jeffrey Walton wrote: > > 1. ECDHE-ECDSA-AES128-GCM-SHA256 > > > > 2. ECDHE-RSA-AES128-GCM-SHA256 > > > > 3. DHE-RSA-AES128-GCM-SHA256 > > The server needs an ECDSA key and certifcate to provide ECDSA. Its not > clear if you have it. Onl

Re: cipher list experiments - what's preventing ECDHE?

2014-06-26 Thread Jeffrey Walton
On Thu, Jun 26, 2014 at 8:51 AM, mclellan, dave wrote: > I’m doing some experimentation with cipher lists using OpenSSL 1.0.1h. I > have two peers using the same libraries, and both enabled with these suites > in the call to SSL_set_cipher_list(): > > > 1. ECDHE-ECDSA-AES128-GCM-SHA256 >

Re: cipher list experiments - what's preventing ECDHE?

2014-06-26 Thread Dr. Stephen Henson
On Thu, Jun 26, 2014, mclellan, dave wrote: > I'm doing some experimentation with cipher lists using OpenSSL 1.0.1h. I > have two peers using the same libraries, and both enabled with these suites > in the call to SSL_set_cipher_list(): > > > 1. ECDHE-ECDSA-AES128-GCM-SHA256 > > 2.

cipher list experiments - what's preventing ECDHE?

2014-06-26 Thread mclellan, dave
I'm doing some experimentation with cipher lists using OpenSSL 1.0.1h. I have two peers using the same libraries, and both enabled with these suites in the call to SSL_set_cipher_list(): 1. ECDHE-ECDSA-AES128-GCM-SHA256 2. ECDHE-RSA-AES128-GCM-SHA256 3. DHE-RSA-AES128-GC

RE: Problem with specifying the CIPHER list

2013-11-26 Thread Salz, Rich
> Server side at least it would be theoretically possible: i.e. only choose a > ciphersuite if TLS v1.2 is negotiated. OpenSSL doesn't support this though. I didn't think so, thanks. One possibility is to add a construct like proto?cipher to the colon-separated list. Any interest in a p

Re: Problem with specifying the CIPHER list

2013-11-26 Thread Dr. Stephen Henson
On Mon, Nov 25, 2013, Salz, Rich wrote: > Is there a way to see something like AES128-SHA is okay with TLSv1.2, but not > with SSLv3? > On the client side there's no way to represent this in the protocol, if you support SSLv3 and TLS v1.2 then it is assumed that any cipher which can be legally

RE: Problem with specifying the CIPHER list

2013-11-26 Thread Dave Thompson
ay, November 25, 2013 22:04 To: openssl-users@openssl.org Subject: Problem with specifying the CIPHER list Is there a way to see something like AES128-SHA is okay with TLSv1.2, but not with SSLv3? -- Principal Security Engineer Akamai Technology Cambridge, MA

Problem with specifying the CIPHER list

2013-11-25 Thread Salz, Rich
Is there a way to see something like AES128-SHA is okay with TLSv1.2, but not with SSLv3? -- Principal Security Engineer Akamai Technology Cambridge, MA

cipher list

2011-02-14 Thread Aro RANAIVONDRAMBOLA
Hello, I would like to know how cipher list negociation works ( see scheme below ). I suppose it happens in handshake level. is it transparent for users ( developpers ) ? must they write it ? if yes, what are the functions ? client server TLS_RSA_WITH_AES_256_CBC_SHA

Re: Obtaining EVP Cipher List

2009-01-12 Thread Steve Chaplin
Ger Hobbelt said the following on 01/09/09 17:34: On Fri, Jan 9, 2009 at 10:20 AM, Steve Chaplin wrote: OBJ_NAME_do_all_sorted() etc, in enc.c. Is this really the recommended way to do this? Does this OBJ_ stuff form part of the published API and, if so, is it documented. OBJ_NAME_* is p

Re: Obtaining EVP Cipher List

2009-01-09 Thread Ger Hobbelt
when I try and use them. For example, aes-256-cbc > works in my app but des-ede3-cfb doesn't. I can't see what else enc.c is > doing to bring in these extra ciphers. Of course, if I > had the answer to 1, I could dump out my available cipher list which might > help. I take

Obtaining EVP Cipher List

2009-01-09 Thread Steve Chaplin
enc.c is doing to bring in these extra ciphers. Of course, if I had the answer to 1, I could dump out my available cipher list which might help. Many thanks in advance, Steve -- Steve Ch

Problems on set cipher list

2006-07-05 Thread Shicai Hu
I need to exclusively use the ciphersuites of TLS_DH_anon_WITH_AES_256_CBC_SHA. So, I called ctx = SSL_CTX_new(TLSv1_method());   and then called SSL_CTX_set_cipher_list(ctx, "ADH-AES256-SHA");Later, I want to make sure this ciphersuite is used exclusively, I called SSL_CIPHER_descripti

Cipher list gory details?

2006-05-15 Thread Victor Duchovni
. Minor deviation from the ciphers(1) documentation: The default cipher list appears to be: ALL:!ADH:+RC4:@STRENGTH rather than the documented: ALL:!ADH:RC4+RSA:+SSLv2:@STRENGTH the documented DEFAULT produces substantially different results. 3. One last thing, perhaps unf

Re: cipher list??

2005-12-15 Thread Perry L. Jones
as posted before you can run the command openssl ciphers -v and it will print a list for you. Perry stone wrote: > Hi: > Can anybody tell me where can i find the cipher list of SSL in the > files of openssl? I mean the combination of algorithms which the > server support during a

cipher list??

2005-12-15 Thread stone
Hi:     Can anybody tell me where can i find the cipher list of SSL in the files of openssl? I mean the combination of algorithms which the server support during a handshake. I just don't where it is.   Great thanks!!   Sun Yingming

Re: SSL error: no cipher list

2005-01-24 Thread Dr. Stephen Henson
On Mon, Jan 24, 2005, Yuriy Synov wrote: > In fact I'm not using OpenSSL library directly. I use an open source library > Indy which in turn makes use of OpenSSL. I discovered that POP3 servers that > use DES-CBC3-SHA work correctly with my program, and the server that fails > uses RC4-SHA. I got

Re: SSL error: no cipher list

2005-01-24 Thread Yuriy Synov
PM Subject: RE: SSL error: no cipher list > On my first SSL implementation, I struggled with this specific error. The > Diffie-Hellman parameters for key exchange must be initialized, and if I > remember correctly they weren't in my case. > > You must set up a callback to

Re: SSL error: no cipher list

2005-01-24 Thread Dr. Stephen Henson
On Mon, Jan 24, 2005, Yuriy Synov wrote: > > See if you can connect to the server using the s_client test program. For > > example: > > > > openssl s_client -conntect hostname:995 > > > > (use whatever port it uses for POP4+SSL, 995 is standard). > > Output from 'openssl s_client' follows: > > [

Re: SSL error: no cipher list

2005-01-24 Thread Yuriy Synov
lf signed certificate in certificate chain) --- +OK <[EMAIL PROTECTED]> (mtiwpxc03) Maillennium POP3/PROXY server #2 and after that I can enter POP3 commands. - Original Message - From: "Dr. Stephen Henson" <[EMAIL PROTECTED]> To: Sent: Saturday, January 22, 2005 2:19

RE: SSL error: no cipher list

2005-01-23 Thread mclellan, dave
ftware Engineer EMC Corporation 228 South St. Hopkinton MA 01748 phone: 508-249-1257 fax 508-497-8030 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Henry Su Sent: Friday, January 21, 2005 3:11 PM To: openssl-users@openssl.org Subject: RE: SSL error:

Re: SSL error: no cipher list

2005-01-22 Thread Dr. Stephen Henson
On Sat, Jan 22, 2005, Yuriy Synov wrote: > > No sure if you have set it or not. If not, you can try following example: > > > > #define CIPHER_LIST "ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH" > > > > SSL_CTX_set_cipher_list(ctx, CIPHER_LIST) ; > > I tr

Re: SSL error: no cipher list

2005-01-22 Thread Yuriy Synov
> No sure if you have set it or not. If not, you can try following example: > > #define CIPHER_LIST "ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH" > > SSL_CTX_set_cipher_list(ctx, CIPHER_LIST) ; I tried to set that cipher list, and now I get the following error: error:140650B5:SSL

RE: SSL error: no cipher list

2005-01-21 Thread Henry Su
y, January 21, 2005 6:15 AM To: openssl Subject: SSL error: no cipher list Dear All, I get this error with one POP3 server when I call function SSL_connect: error:1406D0B8:SSL routines:GET_SERVER_HELLO:no cipher list Could someone tell me what it means and how I can get rid of it? TIA Be

SSL error: no cipher list

2005-01-21 Thread Yuriy Synov
Dear All, I get this error with one POP3 server when I call function SSL_connect: error:1406D0B8:SSL routines:GET_SERVER_HELLO:no cipher list Could someone tell me what it means and how I can get rid of it? TIA Best regards, Yuriy Synov

Re: cipher list

2004-11-11 Thread Lutz Jaenicke
On Thu, Nov 11, 2004 at 01:01:03PM +0100, kankedu wrote: > Thanks, both of you. Unfortunately I see that I wasn't precise enough as to > what the problem was. > > I know how to use SSL_CTX_set_cipher_list. The problem is that the second > parameter, the cipher list (ch

RE: cipher list

2004-11-11 Thread kankedu
Thanks, both of you. Unfortunately I see that I wasn't precise enough as to what the problem was. I know how to use SSL_CTX_set_cipher_list. The problem is that the second parameter, the cipher list (char*), doesn't accept explicit ciphers (as for example "TLS_DHE_RSA_WITH_3

RE: cipher list

2004-11-11 Thread Greaney, Kevin
] [mailto:[EMAIL PROTECTED] On Behalf Of kankedu Sent: Thursday, November 11, 2004 4:55 AM To: openssl-users Subject: cipher list Hi, I want to tell my client to only use certain ciphers, and I have found just the funtion for doing so: SSL_CTX_set_cipher_list(*ctx, "RSA"); However, this do

Re: cipher list

2004-11-11 Thread Bernhard Froehlich
kankedu wrote: Hi, I want to tell my client to only use certain ciphers, and I have found just the funtion for doing so: SSL_CTX_set_cipher_list(*ctx, "RSA"); However, this doesn't give me good enough control on exactly which ciphers to use, only classes. E.g. I cannot write "TLS_DHE_RSA_WITH_

cipher list

2004-11-11 Thread kankedu
Hi, I want to tell my client to only use certain ciphers, and I have found just the funtion for doing so: SSL_CTX_set_cipher_list(*ctx, "RSA"); However, this doesn't give me good enough control on exactly which ciphers to use, only classes. E.g. I cannot write "TLS_DHE_RSA_WITH_3DES_EDE_CBC

Re: Reusing session does not check cipher list?

2003-02-03 Thread Lutz Jaenicke
On Wed, Jan 22, 2003 at 10:31:17AM -0800, [EMAIL PROTECTED] wrote: > > I restricted the ciphers on OpenSSL server (Apache with OpenSSL) to say: > ALL:!eNULL > > Case 1: On client side if I use SSL_set_cipher_list() to set the cipher to NULL-MD5 >and connect to the server, the handshake fails. >

Re: Cipher list

2001-08-02 Thread Dr S N Henson
Martin Sjgren wrote: > > Hello > > Is there a way to get a list of cipher strings for all the ciphers > currently in openssl, or do I have to do what apps/enc.c does? I.E. check > a lot of NO_* macros and hope that the constant exist? > My initial thought was that you couldn't. However on ex

Re: Cipher list

2001-08-01 Thread Martin Sjögren
On Wed, Aug 01, 2001 at 12:09:50PM +0200, Lutz Jaenicke wrote: > On Wed, Aug 01, 2001 at 10:33:33AM +0200, Martin Sjögren wrote: > > Is there a way to get a list of cipher strings for all the ciphers > > currently in openssl, or do I have to do what apps/enc.c does? I.E. check > > a lot of NO_* ma

Re: Cipher list

2001-08-01 Thread Lutz Jaenicke
On Wed, Aug 01, 2001 at 10:33:33AM +0200, Martin Sjögren wrote: > Hello > > Is there a way to get a list of cipher strings for all the ciphers > currently in openssl, or do I have to do what apps/enc.c does? I.E. check > a lot of NO_* macros and hope that the constant exist? man SSL_get_ciphers,

Cipher list

2001-08-01 Thread Martin Sjögren
Hello Is there a way to get a list of cipher strings for all the ciphers currently in openssl, or do I have to do what apps/enc.c does? I.E. check a lot of NO_* macros and hope that the constant exist? Regards, Martin -- Martin Sjögren [EMAIL PROTECTED] ICQ : 41245059 Phone: +

RE: DSA certificate and cipher list setup? - GOT IT

2000-03-13 Thread Grebelsky, Konstantin
It was RAND_screen call that was missing! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, March 10, 2000 6:47 PM To: Grebelsky, Konstantin; [EMAIL PROTECTED] Subject: Re: DSA certificate and cipher list setup? Grebelsky, Konstantin <[EMAIL PROTEC

Re: DSA certificate and cipher list setup?

2000-03-13 Thread Lutz Jaenicke
On Mon, Mar 13, 2000 at 08:10:23AM -0600, Grebelsky, Konstantin wrote: > Also since I debuged s_server I noticed that ssl3_choose_cipher picks > EDH-DSS-DES-CBC3-SHA for the cipher, I tried to set it myself but this > still does not work. > > SSL_CTX_set_cipher_list(m_pCtx, "EDH:DSS:DES:CB

RE: DSA certificate and cipher list setup?

2000-03-13 Thread Grebelsky, Konstantin
x, "EDH:DSS:DES:CBC3:SHA"); I am lost.. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, March 10, 2000 6:47 PM To: Grebelsky, Konstantin; [EMAIL PROTECTED] Subject: Re: DSA certificate and cipher list setup? Grebelsky, Konstantin

DSA certificate and cipher list setup?

2000-03-10 Thread Grebelsky, Konstantin
I have created certificate and priv key as follows: openssl.exe dsaparam 512 -out dsa512.pem openssl req -config req.cnf -x509 -newkey dsa:dsa512.pem -out DsaCa.pem When I do SSL_connect ... and on the server side SSL_accept the accept call fails on c=ssl3_choose_cipher(s,s->session->ciphe