< 1 2 3 4 5 6 > >>   Sort: Rank

Create SSL Server Certificate with "keytool"
How to create an SSL Server Certificate with JDK "keytool"? I want to run a SSL socket server program. "keytool" from the JDK package is a nice tool to create public and private key pairs. It also allows you that create self-sign server certificates that you can use as SSL server certificates. Here ...
2018-06-27, 1353🔥, 0💬

SSL Handshake Messages with Client Authentication
How to get SSL Handshake Messages that use client Authentication? You can get SSL Handshake Messages that use client Authentication as shown below: 1. Open command window and run SslServerCmd.java with client certificate authentication turned on: \fyicenter&gt;\local\jdk-1 .8.0\bin\java-Djavax.n...
2018-06-12, 2273🔥, 0💬

Key Manager Not Sending Client Certificate
Why the Key Manager is not sending the client certificate to the SSL server? I have provided a keystore file with the client certificate inside. JSSE documentation does not provide any details on how the Key Manager selects a certificate and sends it the SSL server. But rxg provided a good explanati...
2018-06-12, 1606🔥, 0💬

Create SSL Client Certificate with "keytool"
How to create an SSL Client Certificate with JDK "keytool"? I want to run a SSL socket client program that requires client authentication. "keytool" from the JDK package is a nice tool to create public and private key pairs. It also allows you that create self-sign client certificates that you can u...
2018-06-12, 1407🔥, 0💬

Client Certificate Authentication Example
How to write a SSL client program that use a client certificate? The SSL is asking for client certificate authentication. When an SSL server program is asking for client certificate authentication, it is usually coded as the following: serverSocket.setNeedClientAuth (true);In the SSL client program,...
2018-06-12, 1351🔥, 0💬

Make Client Certificate Trusted by SSL Server
How to make a self-signed client certificate trusted by the SSL server? I want to help Key Manager to send out the client certificate and accepted by the SSL server. There are several options to make a self-signed certificate trusted by the SSL Server: Send your self-signed certificate to a trusted ...
2018-06-12, 1302🔥, 0💬

GetServerCertificate.java - Get Server Certificate
How to get the server certificate of a HTTPS Website? If you created a URL object with "new java.net.URL(...)", you can use the getServerCertificates() method on the HttpsURLConnection class to get the server certificate of a HTTPS Website: // Copyright (c) FYIcenter.com import java.net.*; import ja...
2018-03-31, 3506🔥, 0💬

SslSocketClient.java - SSL Socket Client Example
How to write an SSL socket client code to communicate to a HTTPS Website using jsse.jar? If you want to write an SSL socket client code to communicate to a HTTPS Website using jsse.jar, you can following the example below: // Copyright (c) FYIcenter.com import java.net.*; import java.io.*; import ja...
2018-03-31, 2207🔥, 0💬

SslCipherList.java - SSL Cipher List
How to get a list of SSL ciphers supported in jsse.jar? You can use the following sample Java code to a list of SSL ciphers supported in jsse.jar: // Copyright (c) FYIcenter.com import java.net.*; import java.io.*; import javax.net.ssl.*; public class SslCipherList { public static void main(String[]...
2018-03-31, 2048🔥, 0💬

SslClientCmd.java - SSL Client Command Example
How to create an SSL client program to run like a command? Here is an SSL client example program you can run like a command to communicate to any HTTPS web server: // Copyright (c) FYIcenter.com import java.net.*; import java.io.*; import javax.net.ssl.*; public class SslClientCmd { public static vo...
2018-03-31, 1872🔥, 0💬

SslSocketInfo.java - SSL Socket Information
How to get more information about the SSL Socket object? It is created as "SSLSocketFactory.createSocket ()".If you created a URL object with "new java.net.URL(...)", you can use the following sample Java code to get more information about the URL object: // Copyright (c) FYIcenter.com import java.n...
2018-03-31, 1735🔥, 0💬

-Djavax.net.debug - jsse.jar Debugging Options
How to use the -Djavax.net.debug jsse.jar debug option? If you are having trouble using jsse.jar, you can use the -Djavax.net.debug JVM property as described in this tutorial: Compile and run the example HttpsUrlReader.java provided in the previous tutorial with the -Djavax.net.debug=help property: ...
2018-03-24, 2599🔥, 0💬

HttpsUrlReader.java - Reading Data from HTTPS URL
How to read data from an HTTPS URL with jsse.jar? I want to see a Java program example. jsse.jar, Java Secure Socket Extension, allows you to communicate securely with an SSL-enabled web server by using the "https" URL protocol. Here is an example program, HttpsUrlReader.java, that can be used to re...
2018-03-24, 2204🔥, 0💬

HttpsUrlInfo.java - HTTPS URL Information
How to get more information about the HTTP URL object? It is created as "new java.net.URL(...)". If you created a URL object with "new java.net.URL(...)", you can use the sample Java code to get more information about the URL object: // Copyright (c) FYIcenter.com import java.net.*; import java.io.*...
2018-03-24, 1945🔥, 0💬

SSL Handshake Message Examples
How to get some SSL Handshake Message Examples? You can get SSL Handshake Message Examples as shown below: \fyicenter&gt;\local\jdk-1 .8.0\bin\java-Djavax.net.debug=ssl:handshak e:dataHttpsUrlReader &gt; ssl.log \fyicenter&gt;edit ssl.log *** ClientHello, TLSv1.2 [write] MD5 and SHA1 has...
2018-03-24, 1606🔥, 0💬

SSL Handshake Message Sequence
What is the SSL handshake message sequence? I want to know how many messages are exchanged between the client and the server. When a SSL client is connecting to a SSL server, they will communicate to each other with the following sequence of messages to perform SSL handshake and exchange application...
2018-03-24, 1234🔥, 0💬

What Is jsse.jar (JDK 8) Java Secure Socket Extension
What Is jsse.jar (JDK 8) Java Secure Socket Extension? jsse.jar, Java Secure Socket Extension, is Java library that enables secure Internet communications. jsse.jar (JDK 8) is the Java Secure Socket Extension library included in the Java SE 8 package. JAR File Size and Download Location: JAR name: j...
2018-02-14, 4911🔥, 0💬

Downloading jsse.jar (JDK 8) Java Secure Socket Extension
How to download and install jsse.jar (JDK 8) Java Secure Socket Extension? jsse.jar, Java Secure Socket Extension, is Java library that enables secure Internet communications. jsse.jar (JDK 8) is included as part of the Java SE 8 package. You can download jsse.jar included in JDK 1.8.0_341 by clicki...
2018-02-14, 3925🔥, 0💬

Downloading jsse.jar (JDK 7) Java Secure Socket Extension
How to download and install jsse.jar (JDK 7) Java Secure Socket Extension? jsse.jar, Java Secure Socket Extension, is Java library that enables secure Internet communications. jsse.jar (JDK 7) is included as part of the Java SE 7 package. You can follow this tutorial to download and install jsse.jar...
2018-02-14, 3612🔥, 0💬

jsse.jar - JSSE API and SunJSSE Provider
What is the JSSE API and SunJSSE provider? The JSSE API is a set of Java library in the Java Extension packages: javax.net and javax.net.ssl packages, The JSSE API JDK 8 version provides API for: Secure sockets and server sockets. A nonblocking engine for producing and consuming streams of SSL/TLS d...
2018-02-14, 2294🔥, 0💬

jsse.jar Features and Cryptographic Functionalities
What are main features and cryptographic functionalities supported in jsse.jar? jsse.jar JDK 8 version includes the following important features: Included as a standard component of the JDK Extensible, provider-based architecture Implemented in 100% pure Java Provides API support for SSL versions 2....
2018-02-14, 1799🔥, 0💬

jsse.jar Source Code Files - OpenJDK 7u Release
Where Can I get source code files of jsse.jar? You can get source code files of jsse.jar (JSSE) from OpenJDK GitHub Website in the src/share/classes/sun/security /ssl/directory. You can also browse JSSE Source Code files below:   Or download all of them as a single archive file: File name: sun-secur...
2018-02-01, 6366🔥, 0💬

What Is jsse.jar 1.0.3_04 Java Secure Socket Extension
What Is jsse.jar 1.0.3_04 Java Secure Socket Extension? jsse.jar, Java Secure Socket Extension, is Java library that enables secure Internet communications. jsse.jar 1.0.3_04 is the Java Secure Socket Extension library designed for the J2SE 1.3.1 package. JAR File Size and Download Location: JAR nam...
2018-02-01, 2362🔥, 0💬

Download and Install jsse-1_0_3_04-do.zip
How to download and install jsse-1_0_3_04-do.zip? jsse.jar, Java Secure Socket Extension, is Java library that enables secure Internet communications. jsse.jar is included in the binary package file like jsse-1_0_3_04-do.zip. You can download the binary package file for Java Secure Socket Extension ...
2018-02-01, 2224🔥, 0💬

< 1 2 3 4 5 6 > >>   Sort: Rank