Re: TC 5.5.17 w/ JDK 1.5 - SSL ciphers to use list

2006-09-13 Thread Mark Thomas
David Wall wrote: Does anybody know how to find the list of SSL ciphers that TC will use (I'm running on Linux)? There's a Connector param to set the ciphers, but I don't know where to find the list of available ciphers that I have.

Re: TC 5.5.17 w/ JDK 1.5 - SSL ciphers to use list

2006-09-13 Thread David Wall
Mark Thomas wrote: David Wall wrote: Does anybody know how to find the list of SSL ciphers that TC will use (I'm running on Linux)? There's a Connector param to set the ciphers, but I don't know where to find the list of available ciphers that I have.

Re: TC 5.5.17 w/ JDK 1.5 - SSL ciphers to use list

2006-09-13 Thread David Wall
I have tracked down two methods that should give me what I want in the abstract class javax.net.ssl.SSLSocket: String[] getEnabledCipherSuites() String[] getSupportedCipherSuites() Is there any way to retrieve the SSLSocket object created by Tomcat that is associated with a given HttpRequest?

Re: TC 5.5.17 w/ JDK 1.5 - SSL ciphers to use list

2006-09-13 Thread Mark Thomas
David Wall wrote: This didn't help as much as I had hoped. Does anybody know where Sun's JDK 1.5 (Linux) keeps the list of SSL ciphers it implements? What document would I look at? What Java API is called by Tomcat to get the list of SSL ciphers that are available?

Re: TC 5.5.17 w/ JDK 1.5 - SSL ciphers to use list - RESOLVED

2006-09-13 Thread David Wall
That's exactly what I was looking for. Thanks. David Mark Thomas wrote: $JAVA_HOME/docs/guide/security/jsse/JSSERefGuide.html You want appendix A. Mark - To start a new topic, e-mail: users@tomcat.apache.org To

TC 5.5.17 w/ JDK 1.5 - SSL ciphers to use list

2006-09-12 Thread David Wall
Does anybody know how to find the list of SSL ciphers that TC will use (I'm running on Linux)? There's a Connector param to set the ciphers, but I don't know where to find the list of available ciphers that I have. Thanks, David