Re: cipher algorithms

2008-03-10 Thread Brian Trzupek
, Baur, Mateus (Brazil RD-CL) wrote: Hi All, I have some doubts regarding OpenSSL cipher algorithms and I was wondering if someone could help me with that. 1) If my understanding is correct, the client sends the list of supported cipher algorithms and the server will choose one

Re: cipher algorithms

2008-03-05 Thread Marek . Marcola
Hello, I have some doubts regarding OpenSSL cipher algorithms and I was wondering if someone could help me with that. 1) If my understanding is correct, the client sends the list of supported cipher algorithms and the server will choose one algorithm of such list in order

RE: cipher algorithms

2008-03-05 Thread Baur, Mateus (Brazil RD-CL)
PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: quarta-feira, 5 de março de 2008 05:51 To: openssl-users@openssl.org Subject: Re: cipher algorithms Hello, I have some doubts regarding OpenSSL cipher algorithms and I was wondering if someone could help me with that. 1) If my understanding

RE: cipher algorithms

2008-03-05 Thread David Schwartz
Thanks Marek! One last question, can an algorithm or cipher suite be enabled or disabled on OpenSSL by an user (I mean, without needing to recompile and redistribute OpenSSL binaries)? You can definitively disable an algorithm by not including it in the libraries. Most programs that use

RE: cipher algorithms

2008-03-05 Thread Baur, Mateus (Brazil RD-CL)
that. Your answer reinforces that. Thanks, Mateus -Original Message- From: [EMAIL PROTECTED] [mailto:owner-openssl- [EMAIL PROTECTED] On Behalf Of David Schwartz Sent: quarta-feira, 5 de março de 2008 09:12 To: openssl-users@openssl.org Subject: RE: cipher algorithms Thanks Marek

RE: cipher algorithms

2008-03-05 Thread Shaw Graham George
Surely http://www.openssl.org/docs/ssl/SSL_CTX_set_cipher_list.html. G. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Baur, Mateus (Brazil RD-CL) Sent: 05 March 2008 12:25 To: openssl-users@openssl.org Subject: RE: cipher algorithms Yes, I know

RE: cipher algorithms

2008-03-05 Thread Marek . Marcola
Hello, One last question, can an algorithm or cipher suite be enabled or disabled on OpenSSL by an user (I mean, without needing to recompile and redistribute OpenSSL binaries)? Yes, from server or client point of view you can control this with SSL_CTX_set_cipher_list() function call. Best

cipher algorithms

2008-03-04 Thread Baur, Mateus (Brazil RD-CL)
Hi All, I have some doubts regarding OpenSSL cipher algorithms and I was wondering if someone could help me with that. 1) If my understanding is correct, the client sends the list of supported cipher algorithms and the server will choose one algorithm of such list in order to establish

AW: cipher algorithms

2008-03-04 Thread Emre Binisik
Hi, The browser can be configured for example: Firefox: security-prefs.js pref(security.ssl3.rsa_1024_des_cbc_sha, false); pref(security.ssl3.rsa_1024_des_cbc_sha, false); pref(security.ssl3.rsa_1024_des_cbc_sha, false); will disable these combinations. The server can be configured for