Top "Jsse" questions

JSSE is a Java implementation of Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols.

Tomcat: TLSv1.2 with strong ciphers not working

I installed Tomcat-7, configured support for TLSv1.2 on port 8443. My Connector configuration: protocol="org.apache.coyote.http11.Http11NioProtocol" SSLEnabled="…

java tomcat ssl jsse
SSL Renegotiation with Client Certificate causes Server Buffer Overflow

I've coded a Java client application which connects to an Apache web server over HTTPS using a client certificate and …

java apache ssl jsse
How do I provide a specific TrustStore while using the default KeyStore in Java (JSSE)

Overview JSSE allows users to provide default trust stores and key stores by specifying javax.net.ssl.* parameters. I would …

java ssl client-certificates jsse
javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure

I have the following connector configuration in server.xml: <Connector SSLEnabled="true" clientAuth="true" keystoreFile="${user.home}/kstore.jks" …

java ssl https jsse mutual-authentication
How to override the cipherlist sent to the server by Android when using HttpsURLConnection?

During TLS negotiation, clients send a list of supported ciphers to the server, the server picks one, and encryption starts. …

java android ssl jsse httpsurlconnection
jsse handshake_failure on public https web site

I have read a related question already, but it doesn't seem to fail at the same place I am seeing …

java ssl jsse
SSL_NULL_WITH_NULL_NULL cipher suite in in Jetty logs

I'm using Jetty with HTTPS and a valid certificate, and I'm not sure to get it right because cipher suite …

java ssl jetty ssl-certificate jsse
What is SunX509 used for and can it work with parties using IbmX509?

When I manually create a KeyManager, one of the steps is this: KeyManagerFactory.getInstance("SunX509") This does not work on …

java ssl-certificate jsse
How should I do hostname validation when using JSSE?

I'm writing a client in Java (needs to work both on the desktop JRE and on Android) for a proprietary …

java ssl jsse
Setting multiple truststore on the same JVM

I have an Java application running on a weblogic server. The application has two distinct modules which use SSL to …

java ssl keystore truststore jsse