1
PKCS12證書所以這裏就是我想要做的事:創建JAVA
我連接到我的SSL服務器
它送給我兩個證書,其中一個是自簽名
在這個階段,不存在任何問題,我有:
X509Certificate[] myTwoCerts;
// with 2 certificates in there, and I'm sure it's there because, I print them in my console.
- 現在我想在裏面創建2個證書的.p12文件。
到現在爲止,我已經試過這樣的事情:
KeyStore pkcs12Store = KeyStore.getInstance("PKCS12");
pkcs12Store.load(null, null);
X509Certificate cert1 = myTwoCerts[0];
X509Certificate cert2 = myTwoCerts[1]
String alias1 = "FIRST";
String alias2 = "SECOND";
pkcs12Store.setCertificateEntry(alias1, cert2);
pkcs12Store.setCertificateEntry(alias2, cert2);
但我發現了以下異常:
Exception in thread "main" java.security.KeyStoreException: TrustedCertEntry not supported
任何人可以幫助我PLZ?