jsse Questions
4
I'm looking to parse an XML file that updates said file daily - the only issue I've run into is that they use their own certificate (https://...) and I can't use that specific URL, nor is the...
Grin asked 4/12, 2011 at 20:7
5
Solved
A module I'm adding to our large Java application has to converse with another company's SSL-secured website. The problem is that the site uses a self-signed certificate. I have a copy of the certi...
Wadai asked 13/5, 2009 at 16:54
2
Solved
I'm working on a Java project where I should implement the SSL-protocol on the server-side. This is the first time I will use SSL in my application, so I read a lot about SSL/TLS, and now I want to...
Womb asked 7/9, 2015 at 8:4
0
I am working on a remote server that uses Netty to perform client authentication with a TLS handshake through the Netty SSLHandler library. This S/O question gives a bit: Set up Netty with 2-way SS...
Flats asked 4/6, 2015 at 21:45
3
Solved
For the vulnerabilty see https://freakattack.com/.
Mozilla wiki has a page with recommendations for ciphersuites: https://wiki.mozilla.org/Security/Server_Side_TLS#Recommended_configurations
How ...
1
Solved
I've set up node-to-node encryption on my Cassandra cluster. Now I want to set up client-to-node. According to this documentation, it should be as easy as taking the SSL certificate of my client an...
Ronrona asked 12/9, 2014 at 19:3
1
Solved
Under what circumstances would one use a HostnameVerifier over a TrustManager in Java? Is one recommended over the other? Looking at the Java docs (Interface HostnameVerifier and Interface TrustMan...
3
We have a Java Socket Server listening on an SSLSocket (port 443) and an iOS application that connects with it. When running on iOS 5.1, the application stopped working when we upgraded the Java ve...
Lesleelesley asked 20/10, 2012 at 22:54
2
Solved
I am trying to upgrade a socket to an SSLSocket using STARTTLS. On InspIRCd's wiki this is how its supposed to work
>> STARTTLS
<< :test2.chatspike.net 670 nickname :STARTTLS successfu...
2
Solved
I'm using Jetty with HTTPS and a valid certificate, and I'm not sure to get it right because cipher suite appears to be SSL_NULL_WITH_NULL_NULL in server logs. Client logs look good, however.
The ...
Biegel asked 6/8, 2013 at 13:2
2
I'm writing a client in Java (needs to work both on the desktop JRE and on Android) for a proprietary protocol (specific to my company) carried over TLS. I'm trying to figure out the best way to wr...
2
Solved
I'm writing a simple HTTPS proxy program with Java for educational purposes. My program listens on a port (say 7443) for incoming HTTPS requests from a browser (say Firefox), parses the request and...
3
I'm seriously confused on the differences between cacerts and jssecacerts files.
I know that by default java looks for the jssecacerts file and then the cacerts file.
But what is the point of the...
Millepore asked 18/4, 2011 at 21:59
1
Solved
I'm trying to establish a secure connection between two Java projects but I'm getting a SSLHandshakeException (no cipher suites in common). This are the methods to create sockets in both sides:
Cl...
3
Solved
I've coded a Java client application which connects to an Apache web server over HTTPS using a client certificate and performs an HTTP PUT of a file to the server. It works fine with small files, b...
2
Solved
Overview
JSSE allows users to provide default trust stores and key stores by specifying javax.net.ssl.* parameters. I would like to provide a non-default TrustManager for my application, while all...
Broadway asked 7/3, 2013 at 11:1
2
In Java using JSSE with TLS. I have created a secure socket between the server and client. After finally getting the sockets to connect securely, I still have a fundamental question about my existi...
Remediless asked 15/10, 2012 at 2:32
1
Solved
I am trying to build a custom HTTPS Server in Java (6) using the built in class com.sun.net.httpserver.HttpsServer. It works fine until I require client authentication. At that point it fails with ...
Traceable asked 23/9, 2012 at 15:14
1
For a system with multiple application servers and multiple clients, I would like to introduce mutual authentication as well as other security protections provided by TLS.
The servers and clients ...
Thedrick asked 19/7, 2012 at 9:15
2
Solved
I'm looking at the JSSE reference guide, I need to obtain an instance of SSLContext in order to create a SSLEngine, so I can use it with Netty to enable security.
To obtain an instance of SSLConte...
2
I'd like to get exact details on the SSL debug output generated using javax.net.debug. I have looked, but nearly everything just goes through a sample file.
Sorry in advance if this is easi...
4
Solved
We are using Maven 2 and have a maven repository manager secured with SSL client authentication. In order for Maven to access the repository the following system properties must be passed to Java:
...
1
Solved
This is a follow-up question to "SSL Handshaking Using Self-Signed Certs and SSLEngine (JSSE)".
I have implemented a NIO Webserver that can process SSL and non-SSL messages on the same port. In o...
1
Solved
When I manually create a KeyManager, one of the steps is this:
KeyManagerFactory.getInstance("SunX509")
This does not work on IBM jre where I need to specify "IbmX509".
My questions:
I read ...
Medullary asked 9/4, 2012 at 12:31
1
Solved
I have been tasked to implement a custom/standalone Java webserver that can process SSL and non-SSL messages on the same port.
I have implemented an NIO server and its working quite well for non-...
© 2022 - 2024 — McMap. All rights reserved.