Tagged Questions

6
votes
1answer
476 views

Export certificate in windows store to a p12 file using Java

I will need to export a certificate in windows store to a p12 file. Similar to what you can do from firefox/IE browser but in JAVA. The only way I am able to do it currently is doing a C# with double ...
4
votes
2answers
4k views

PKCS12 Java Keystore from CA and User certificate in java

I've recently been put in charge of mocking up an Apple product (iPhone Configuration Utility) in Java. One of the sections I've been a bit stuck on is a part about Exchange ActiveSync. In there, it ...
2
votes
1answer
275 views

how to convert java jks keystore to pkcs12 certificate programatically?

Is there is any that i can convert ava jks keystore to pkcs12 certificate programatically? Abdul Khaliq
1
vote
1answer
84 views

How to sign data with .p12 file in Java?

How to sign data with .p12 file in Java? Java seems to support only until pkcs11, I just can't find the standard library for pkcs12. There's nothing in 'java.security'... for decoding .p12 file to ...
1
vote
2answers
118 views

PKCS#12 : DerInputStream.getLength() exception

I generate a certificate using the keytool command: keytool -genkeypair -alias myRSAKey -keyalg RSA -keysize 1024 -keystore test.p12 -storepass test -storetype pkcs12 Then if I try to load it using ...
1
vote
1answer
188 views

How to parse a PKCS12 file programmatically in Java?

How to parse a PKCS12 file programmatically in Java? When I tried to use KeyStore APIs in the my program, I got an "No Such Algorithm Exception" while decrypting Authsafe. But, apart from using ...
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
4answers
352 views

Is there any java API to convert certificate from 'DER' format to pkcs#12 format

I need to convert certificate from DER format to pkcs#12 format. I know I can do this using openssl command. I am looking for java API / Class which can do this job. Any help will be appreciated.
1
vote
2answers
2k views

Axis over SSL and 2-way authentication with a PKCS#12 keystore

I have PKCS#12 keystore that I've sucessfully imported in my browser for accessing a server that needs 2-way SSL authentication. Works perfectly reaching any https URL there. However, I'm unable to ...
0
votes
2answers
78 views

Generate PKCS12 file using Java

I need to generate a PKCS12 file using Java. Actually, I need to automate the following certificate generation using openssl (the ca was created previously and is not pretended to automate its ...
0
votes
0answers
587 views

Generating (PKCS12) certificate friendly name with Bouncy Castle in Java

I am using the bouncycastle library to create certificates and export them as PKCS12 certificate files on a Java webapp. The code on my app to generate the certificate file is the same as in this ...
0
votes
2answers
5k views

How to set up Java to use user specific certificates for Eclipse?

I can't believe I'm the only person to run up against this problem. I've been googling for hours and have not had any luck. The Java security documentation doesn't seem to address PKCS12 certificates ...