1 2 3 > >>   Sort: Rank

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

Downloading jsse.jar - Java Secure Socket Extension
Where to find answers to frequently asked questions on Downloading and installing jsse.jar - Java Secure Socket Extension? Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Downloading and installing jsse.jar - Java Secure Socket Extension: What Is jsse...
2021-02-16, 4644🔥, 3💬

💬 2021-02-16 Vanahja: ok

💬 2017-09-10 @FYIcenter.com: @Yin, jsse.jar is included in the JDK package. No need to download it separately.

💬 2017-09-07 Yin Yabing: need jsse.jar to httpsURLConnection

Downloading OWASP Enterprise Security API 2.0.1
ESAPI (The OWASP Enterprise Security API) is a free, open source, web application security control library that makes it easier for programmers to write lower-risk applications. The ESAPI libraries are designed to make it easier for programmers to retrofit security into existing applications. The ES...
2019-03-29, 5945🔥, 2💬

Downloading OWASP Enterprise Security API 2.0.1 - Part II
ESAPI (The OWASP Enterprise Security API) is a free, open source, web application security control library that makes it easier for programmers to write lower-risk applications. The ESAPI libraries are designed to make it easier for programmers to retrofit security into existing applications. The ES...
2019-03-29, 8381🔥, 2💬

💬 2019-03-29 ccm: ok

💬 2017-06-05 zyk: 谢谢

bcprov-jdk16-145.jar - Bouncy Castle Crypto Provider - Part 2
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms, it was developed by the Legion of the Bouncy Castle - with a little help! bcprov-jdk16-145.jar - A provider for the Java Cryptography Extension and the Java Cryptography Architecture. JAR File Size and Download Lo...
2018-10-01, 10414🔥, 1💬

💬 2018-10-01 per: per

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, 2176🔥, 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, 1489🔥, 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, 1438🔥, 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, 1336🔥, 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, 1333🔥, 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>\local\jdk-1 .8.0\bin\java-Djavax.n...
2018-06-12, 2255🔥, 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, 1587🔥, 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, 1396🔥, 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, 1306🔥, 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, 1280🔥, 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, 3469🔥, 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, 2178🔥, 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, 2026🔥, 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, 1843🔥, 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, 1711🔥, 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, 2580🔥, 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, 2181🔥, 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, 1922🔥, 0💬

1 2 3 > >>   Sort: Rank