I used bouncy castle and JSCEP to create my certificate. Now i have my private key and .cer certificate. I would now need to create pfx or p12 file out of this using Java or Bouncy castle.
Asked
Active
Viewed 1,382 times
1 Answers
0
Look at the Java KeyStore class, and how to get an instance of it with the PKCS12
keystore type.
Then look at the setKeyEntry() and store(). That should give you a very good start to achieving your goal.

gtrig
- 12,550
- 5
- 28
- 36
-
Thanks Gtrig for sharing your inputs. I will try out this – shatthi Aug 20 '13 at 13:53