Tagged Questions

4
votes
2answers
953 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 anyo …
3
votes
1answer
63 views

How do I access a third party component using ASP.NET and a JKS certificate ?

I need to access a third party application that requires a JKS Certificate (which I have). My client application is an ASP.NET one. How do I go about this? (I would have liked t …
1
vote
1answer
943 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?
1
vote
2answers
175 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 …
0
votes
0answers
103 views

Convert from .jks to passwordless .p12?

I have a java key store that contains a cert and private key. I want to convert this to a .p12 file that has no password. I'm using the .p12 in a shell script.
0
votes
0answers
510 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 …