मेरे मामले में मेरे पास एक पेम फ़ाइल थी जिसमें दो प्रमाणपत्र और एक एन्क्रिप्टेड निजी कुंजी थी जिसे पारस्परिक एसएसएल प्रमाणीकरण में उपयोग किया जाना था। तो मेरी pem फ़ाइल इस तरह दिखी:
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
-----BEGIN RSA PRIVATE KEY-----
Proc-Type: 4,ENCRYPTED
DEK-Info: DES-EDE3-CBC,C8BF220FC76AA5F9
...
-----END RSA PRIVATE KEY-----
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
मैंने जो किया था यह रहा:
फ़ाइल को तीन अलग-अलग फ़ाइलों में विभाजित करें, ताकि प्रत्येक में केवल एक प्रविष्टि हो, "--- BEGIN .." से शुरू होकर "--- END .." लाइनों के साथ समाप्त हो। मान लें कि अब हमारे पास तीन फाइलें हैं: cert1.pem cert2.pem और pkey.pem
Opensl और निम्न सिंटैक्स का उपयोग करके pkey.pem को DER प्रारूप में परिवर्तित करें:
openssl pkcs8 -topk8 -nocrypt -in pkey.pem -inform PEM -out pkey.der -outform DER
ध्यान दें, यदि निजी कुंजी एन्क्रिप्ट की गई है, तो आपको डीईआर प्रारूप में परिवर्तित करने के लिए एक पासवर्ड (मूल पीईएम फ़ाइल के आपूर्तिकर्ता से प्राप्त करें) की आवश्यकता है, इस तरह से पासवर्ड आपसे पासवर्ड के लिए पूछेगा: "पेक के लिए एक पास वाक्यांश दर्ज करें .pem: "यदि रूपांतरण सफल होता है, तो आपको" pkey.der "नामक एक नई फ़ाइल मिलेगी
एक नया जावा कुंजी स्टोर बनाएँ और निजी कुंजी और प्रमाणपत्र आयात करें:
String keypass = "password"; // this is a new password, you need to come up with to protect your java key store file
String defaultalias = "importkey";
KeyStore ks = KeyStore.getInstance("JKS", "SUN");
// this section does not make much sense to me,
// but I will leave it intact as this is how it was in the original example I found on internet:
ks.load( null, keypass.toCharArray());
ks.store( new FileOutputStream ( "mykeystore" ), keypass.toCharArray());
ks.load( new FileInputStream ( "mykeystore" ), keypass.toCharArray());
// end of section..
// read the key file from disk and create a PrivateKey
FileInputStream fis = new FileInputStream("pkey.der");
DataInputStream dis = new DataInputStream(fis);
byte[] bytes = new byte[dis.available()];
dis.readFully(bytes);
ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
byte[] key = new byte[bais.available()];
KeyFactory kf = KeyFactory.getInstance("RSA");
bais.read(key, 0, bais.available());
bais.close();
PKCS8EncodedKeySpec keysp = new PKCS8EncodedKeySpec ( key );
PrivateKey ff = kf.generatePrivate (keysp);
// read the certificates from the files and load them into the key store:
Collection col_crt1 = CertificateFactory.getInstance("X509").generateCertificates(new FileInputStream("cert1.pem"));
Collection col_crt2 = CertificateFactory.getInstance("X509").generateCertificates(new FileInputStream("cert2.pem"));
Certificate crt1 = (Certificate) col_crt1.iterator().next();
Certificate crt2 = (Certificate) col_crt2.iterator().next();
Certificate[] chain = new Certificate[] { crt1, crt2 };
String alias1 = ((X509Certificate) crt1).getSubjectX500Principal().getName();
String alias2 = ((X509Certificate) crt2).getSubjectX500Principal().getName();
ks.setCertificateEntry(alias1, crt1);
ks.setCertificateEntry(alias2, crt2);
// store the private key
ks.setKeyEntry(defaultalias, ff, keypass.toCharArray(), chain );
// save the key store to a file
ks.store(new FileOutputStream ( "mykeystore" ),keypass.toCharArray());
(वैकल्पिक) अपने नए कुंजी स्टोर की सामग्री को सत्यापित करें:
keytool -list -keystore mykeystore -storepass password
कीस्टोर प्रकार: जेकेएस कीस्टोर प्रदाता: सन
आपके कीस्टॉर में 3 प्रविष्टियाँ हैं
cn = ..., ou = ..., o = .., 2 सितंबर 2014, TrustCertEntry, प्रमाणपत्र फिंगरप्रिंट (SHA1): 2C: B8: ...
importkey, Sep 2, 2014, PrivateKeyEntry, प्रमाणपत्र फिंगरप्रिंट (SHA1): 9C: B0: ...
cn = ..., o = ...., Sep 2, 2014, TrustCertEntry, प्रमाणपत्र फिंगरप्रिंट (SHA1): 83,63: ...
(वैकल्पिक) अपने एसएसएल सर्वर के खिलाफ अपने नए कुंजी स्टोर से अपने प्रमाण पत्र और निजी कुंजी का परीक्षण करें: (आप VM विकल्प के रूप में डिबगिंग सक्षम करना चाहते हैं: -Djavax.net.debug = all)
char[] passw = "password".toCharArray();
KeyStore ks = KeyStore.getInstance("JKS", "SUN");
ks.load(new FileInputStream ( "mykeystore" ), passw );
KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
kmf.init(ks, passw);
TrustManagerFactory tmf = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
tmf.init(ks);
TrustManager[] tm = tmf.getTrustManagers();
SSLContext sclx = SSLContext.getInstance("TLS");
sclx.init( kmf.getKeyManagers(), tm, null);
SSLSocketFactory factory = sclx.getSocketFactory();
SSLSocket socket = (SSLSocket) factory.createSocket( "192.168.1.111", 443 );
socket.startHandshake();
//if no exceptions are thrown in the startHandshake method, then everything is fine..
अंत में अपना प्रमाणपत्र HttpsURLConnection के साथ पंजीकृत करें यदि इसका उपयोग करने की योजना है:
char[] passw = "password".toCharArray();
KeyStore ks = KeyStore.getInstance("JKS", "SUN");
ks.load(new FileInputStream ( "mykeystore" ), passw );
KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
kmf.init(ks, passw);
TrustManagerFactory tmf = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
tmf.init(ks);
TrustManager[] tm = tmf.getTrustManagers();
SSLContext sclx = SSLContext.getInstance("TLS");
sclx.init( kmf.getKeyManagers(), tm, null);
HostnameVerifier hv = new HostnameVerifier()
{
public boolean verify(String urlHostName, SSLSession session)
{
if (!urlHostName.equalsIgnoreCase(session.getPeerHost()))
{
System.out.println("Warning: URL host '" + urlHostName + "' is different to SSLSession host '" + session.getPeerHost() + "'.");
}
return true;
}
};
HttpsURLConnection.setDefaultSSLSocketFactory( sclx.getSocketFactory() );
HttpsURLConnection.setDefaultHostnameVerifier(hv);