RE: tlsv1_method implementation

2009-08-07 Thread Will Bickford
suite list here"). Cipher suites are colon (:) delimited. --Will > -Original Message- > From: owner-openssl-us...@openssl.org > [mailto:owner-openssl-us...@openssl.org] On Behalf Of Michael Kurecka > Sent: Thursday, August 06, 2009 10:30 AM > To: openssl-users@open

RE: tlsv1_method implementation

2009-08-06 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Michael Kurecka > Sent: Thursday, 06 August, 2009 11:30 > Thanks for the help. I was able to determine the list of > ciphers allowed (SSL_CTX_get_cipher_list), the one of those used > (SSL_get_current_cipher) and to set specific ciphers > (SSL

Re: tlsv1_method implementation

2009-08-06 Thread Michael Kurecka
Thanks for the help. I was able to determine the list of ciphers allowed (SSL_CTX_get_cipher_list), the one of those used (SSL_get_current_cipher) and to set specific ciphers (SSL_CTX_set_cipher_list). I was only able to get information for the client. The server doesn't seem to use the SSL_CTX obj

RE: tlsv1_method implementation

2009-08-03 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Michael Kurecka > Sent: Monday, 03 August, 2009 09:25 > Is there a way to print/display the list of ciphers being used? > What do you mean used? - negotiated for an SSL connection? SSL_get_current_cipher() and the convenience macros using it

Re: tlsv1_method implementation

2009-08-03 Thread Kyle Hamilton
Please read the RFC on TLS to figure out how they're agreed upon. As Dave Thompson said, you can use SSL_[CTX_]set_cipher_list to state what algorithms you're willing to negotiate. If the peer doesn't support any of them, then a "could not negotiate a common set of security parameters" alert gets

Re: tlsv1_method implementation

2009-08-03 Thread Michael Kurecka
I figured out how to get the list of ciphers being used, but I can't figure out how they were set or chosen. How are the ciphers set? Is there a way to modify that list? __ OpenSSL Project http://www

Re: tlsv1_method implementation

2009-08-03 Thread Michael Kurecka
Is there a way to print/display the list of ciphers being used? On Fri, Jul 31, 2009 at 9:47 PM, Dave Thompson wrote: >> From: owner-openssl-us...@openssl.org On Behalf Of Michael Kurecka >> Sent: Friday, 31 July, 2009 09:05 > >> I'm using OpenSSL 0.9.8k and am trying to find the >> implementation

RE: tlsv1_method implementation

2009-07-31 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Michael Kurecka > Sent: Friday, 31 July, 2009 09:05 > I'm using OpenSSL 0.9.8k and am trying to find the > implementation of the tlsv1_method. Below are the only > references I found. I'm trying to determine the cipher suites > used by OpenSS