> From: [email protected] 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 OpenSSL's TLSv1 method so I would appreciate any help > in locating the code, Thanks. > > File openssl-0.9.8k\ssl\t1_meth.c > 72 26:IMPLEMENT_tls1_meth_func(TLSv1_method, This invokes a macro defined in ssl_locl.h which defines a function that returns pointer to a local static struct. As that shows, TLS1 shares most of the logic of SSL3, including the list of ciphers in s3_lib.c. You can get a convenient display of the configured ones by openssl ciphers SSLv3 # or TLSv1 The ciphersuites eligible for a particular connection can of course be restricted by SSL_[CTX_]set_cipher_list and the one used further restricted/selected by the peer. ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List [email protected] Automated List Manager [email protected]
