<< < 1 2 3   Sort: Date

SslServerCmd.java - SSL Server Command Example
How to create an SSL server program to run like a command? In order to create an SSL server program, you need to do the following: 1. Load the keystore file that contains the server certificate. Remember to specify the keystore password as shown below: KeyStore ks = KeyStore.getInstance("JKS"); ks.l...
2018-06-27, 2177🔥, 0💬

Portecle-1.9.zip, How To Download?
Portecle is a user friendly GUI application for creating, managing and examining keystores, keys, certificates, certificate requests, certificate revocation lists and more. Download File Size and Download Location: File name: Portecle-1.9.zip File size: 3,414,829 bytes Release date: 03-Jun-2015 Down...
2015-10-17, 2148🔥, 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, 2031🔥, 0💬

What Is jsse-1_0_3_04-do.zip
What is jsse-1_0_3_04-do.zip? jsse-1_0_3_04-do.zip is the binary package of Java Secure Socket Extension 1.0.3_04 for domestic use. Java Secure Socket Extension is Java library that enables secure Internet communications. Download File Size and Download Location: File name: jsse-1_0_3_04-do.zip File...
2018-02-01, 2003🔥, 0💬

Examples for jsse.jar - Java Secure Socket Extension
Where to find answers to frequently asked questions on Java Examples for jsse.jar - Java Secure Socket Extension. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Java Examples for jsse.jar - Java Secure Socket Extension. HttpsUrlReader.java - Reading ...
2018-02-01, 1945🔥, 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, 1923🔥, 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, 1844🔥, 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, 1792🔥, 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, 1712🔥, 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, 1594🔥, 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, 1589🔥, 0💬

What Is Client Certificate Authentication
What Is Client Certificate Authentication? Client Certificate Authentication is an extra layer of security protection added to the normal SSL socket communication. In a normal SSL socket communication: The client is asking for the server to show server certificate. The client validates the server ce...
2018-06-27, 1490🔥, 0💬

Make SSL Server Certificate Trusted
How to make a SSL self-signed server certificate trusted? I want the ValidatorException going away. There are several options to make a self-signed server certificate trusted: Send your self-signed certificate to a trusted root CA, like GeoTrust, and ask them to sign it for you. Add your self-signed...
2018-06-27, 1440🔥, 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, 1398🔥, 0💬

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, 1337🔥, 0💬

Connect to SSL Server Failed with Invalid Certificate
Why am I getting the ValidatorException error when connecting to an SSL server? You are getting a ValidatorException error when connecting to an SSL server, because the server certificate can not be trusted for one of the following possible reasons: The root CA of the server certificate is unknown. ...
2018-06-27, 1335🔥, 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, 1307🔥, 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, 1281🔥, 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, 1222🔥, 0💬

SunJSSE Provider Class Test
How to test SunJSSE Provider Classes? SunJSSE Provider Classes are hidden in some library files in JDK 9 and newer releases. They were stored in jsse.jar JDK 8 and older releases. The following sample program, SunJsseClassTest.java, shows you how to test SunJSSE Provider Classes: // Copyright (c) FY...
2023-01-23, 372🔥, 1💬

Where jsse.jar in JDK
Where is jsse.jar in JDK? jsse.jar contains Oracle implementation, formerly Sun implementation, of JSSE. It is referred as SunJSSE provider in JDK documentation. jsse.jar is packaged in JDK at different locations for different releases: JDK 9 - 18 Hidden in other library files JDK 1.4 - 8 Included i...
2023-01-23, 349🔥, 0💬

<< < 1 2 3   Sort: Date