Top "Jsse" questions

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

SSLContext initialization

I'm looking at the JSSE reference guide, I need to obtain an instance of SSLContext in order to create a …

java security ssl jsse
Create app with SSLSocket Java

I want to create an app use SSLSocket: client send a String to server and server will uppercase that String …

java sockets ssl jsse
Why does Java's SSLSocket send a version 2 client hello?

The SSLSocket.getEnabledProtocols() method returns the following: [SSLv2Hello, SSLv3, TLSv1]. And indeed, when I call connect() and I have …

java ssl jsse
How do I initialize a TrustManagerFactory with multiple sources of trust?

My application has a personal keystore containing trusted self-signed certificates for use in the local network - say mykeystore.jks. …

java ssl x509 jsse
How to add server certificate into java application in eclipse

I've got a server application which uses: import javax.net.ssl.SSLServerSocket; import javax.net.ssl.SSLServerSocketFactory; import javax.net.…

java ssl ssl-certificate keytool jsse
Programmatically Obtain KeyStore from PEM

How can one programmatically obtain a KeyStore from a PEM file containing both a certificate and a private key? I …

java ssl ssl-certificate bouncycastle jsse
Is the cacerts file missing in ubuntu 15.10 and openjdk-8-jdk?

I just installed Ubuntu 15.10 and their openjdk-8-jdk (by apt-get). Now I am missing the cacerts file. There is a …

ubuntu java-8 openjdk jsse ubuntu-15.10
Can someone point me to exact details on javax.net.debug?

I'd like to get exact details on the SSL debug output generated using javax.net.debug. I have looked, but …

java debugging ssl jsse
How to get the java.security.PrivateKey object from RSA Privatekey.pem file?

I have a RSA private key file (OCkey.pem). Using java i have to get the private key from this …

java ssl jca jsse
How to enable TLS version 1.2 in web logic for outgoing https transactions

I am working on one project which require TLS version 1.2 to be enabled on web logic server for outgoing https …

java ssl weblogic12c jsse ibm-jdk