Tagged Questions

7
votes
2answers
5k views

How to use PEM file to create a SSL socket in Java?

See related question. I have a PEM file provided to me and was told that it will be needed in establishing a SSL socket that connects to a c++ server for some API calls. Does anyone know how I can ...
4
votes
2answers
719 views

JKS protection

Are JKS (Java Key Store) files encrypted? Do they provide full protection for encryption keys, or do I need to rely solely on access control? Is there a way to ensure that the keys are protected? I'm ...
3
votes
2answers
63 views

Changing the password of a java keystore programmatically

How do I go about changing the password of a JKS keystore(and all entries in it) from java code?
3
votes
3answers
6k views

How can I create a PFX file from a Java Keystore?

I have a Java keystore (.jks file) holding a single certificate. How can I create a .pfx file from this keystore?
2
votes
1answer
97 views

how s_client present client certificate chain

I am trying to test whether the my certs and server certs works correctly by using openssl s_client. openssl s_client -cert mycert -key mykey -CAfile CA.cert -connect host:name But this tool only ...
2
votes
1answer
160 views

Connect to FTPS server

I write FTPS server, and I have problems with ssl connection after AUTH TLS command. Simple example: try { int ServerPort = 21; ServerSocket FtpExServer = new ServerSocket(ServerPort); ...
1
vote
1answer
111 views

WSIT: JKS relative filepath

When creating a web service server using Netbeans, Maven, Metro and Tomcat, how can I use relative filepaths in the wsit configuration? For example, I have this line inside the wsit file: ...
1
vote
2answers
360 views

Calling WS with SSL in java

I connect to a web service with this client that work fine: WSCSI WSCS = new WSCSI("http://localhost:8080/ServiceV2/services/WSCSISoap?wsdl","WSCSI","WSCSISoap"); IScoring instance = new ...
1
vote
2answers
765 views

Convert Keystore - Windows-my to jks

We are using SunMSCAPI to retrieve the current user keystore as below.. keystore = KeyStore.getInstance("Windows-MY", "SunMSCAPI"); We will need to build a JSSE keystore of type JKS/PKCS12 and ...
1
vote
2answers
427 views

Setting Grizzly's keystore to use a jks in a jar

I'm trying to use com.sun.grizzly.SSLConfig.setKeyStoreFile() to set SSL for Grizzly. It only takes a String as input (not InputStream or File). I want to use a jks file that is within a JAR file. ...
1
vote
2answers
825 views

How does keytool protect keys?

When you are building a key store with the Java Keytool utility, how are the keys protected? I've read through the documentation, and I realize that each private key has a key password, and then the ...
0
votes
2answers
100 views

How do I import an existing Java keystore (.jks) file into a Java installation?

So, I am having trouble with LDAP. I have an integration test case that hopefully will work out, but it is currently running into LDAPS security issues with the SSL handshake. I am able to connect ...
0
votes
1answer
80 views

How can I use keytool or openssl to generate a signed certificate?

How can I use keytool or openssl to generate a signed certificate?
0
votes
0answers
59 views

Attributes reversed in certificate subject and issuer

I am trying to generate X509 certificates with bouncycastle 1.46, with the code below. The issue I have is that when a certificate is written in a JKS and then reread, the DNs are reversed. For ...
0
votes
1answer
351 views

how to load an rsa privated key encrypted with des in java

in my job i was assigned a task in which i have to programmatically load a private and public keys from files and then store them in a .jks file,the private key was generated using openssl, its an rsa ...
0
votes
1answer
2k views

C# client connecting to a Java server over SSL

As a team project I need to connect from a C# client to a Java 6.5 SSL server, however when I get to the stream.AuthenticateAsClient line it hangs. C# connect code public static void connect(string ...