org.apache.openejb.client.SSLContextBuilder Maven / Gradle / Ivy
The newest version!
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.openejb.client;
import javax.net.ssl.*;
import java.io.FileInputStream;
import java.security.KeyManagementException;
import java.security.KeyStore;
import java.security.NoSuchAlgorithmException;
import java.util.Map;
public class SSLContextBuilder {
private Map params;
public SSLContextBuilder(final Map params) {
this.params = params;
}
public SSLContext build() throws NoSuchAlgorithmException, KeyManagementException {
final KeyManager[] keyManagers = initKeyManager();
final TrustManager[] trustManagers = initTrustManager();
final SSLContext sslContext = SSLContext.getInstance("SSL");
sslContext.init(keyManagers, trustManagers, new java.security.SecureRandom());
return sslContext;
}
private TrustManager[] initTrustManager() {
final String trustStore = params.get("sslTrustStore");
if (trustStore == null) {
return null;
}
try {
final String sslTrustStoreType = params.get("sslTrustStoreType");
final KeyStore ks = KeyStore.getInstance(null == sslTrustStoreType ? KeyStore.getDefaultType() : sslTrustStoreType);
final String trustStorePwd = params.get("sslTrustStorePassword");
final char[] pwd;
if (trustStorePwd != null) {
pwd = trustStorePwd.toCharArray();
} else {
pwd = "changeit".toCharArray();
}
final FileInputStream fis = new FileInputStream(trustStore);
try {
ks.load(fis, pwd);
} finally {
fis.close();
}
final String sslTrustStoreProvider = params.get("sslTrustStoreProvider");
final TrustManagerFactory tmf = TrustManagerFactory.getInstance(null == sslTrustStoreProvider ? TrustManagerFactory.getDefaultAlgorithm() : sslTrustStoreProvider);
tmf.init(ks);
return tmf.getTrustManagers();
} catch (final Exception e) {
throw new ClientRuntimeException(e.getMessage(), e);
}
}
private KeyManager[] initKeyManager() {
final String keyStore = params.get("sslKeyStore");
if (keyStore == null) {
return null;
}
try {
final String sslKeyStoreType = params.get("sslKeyStoreType");
final KeyStore ks = KeyStore.getInstance(null == sslKeyStoreType ? KeyStore.getDefaultType() : sslKeyStoreType);
final String keyStorePassword = params.get("sslKeyStorePassword");
final char[] pwd;
if (keyStorePassword != null) {
pwd = keyStorePassword.toCharArray();
} else {
pwd = "changeit".toCharArray();
}
final FileInputStream fis = new FileInputStream(keyStore);
try {
ks.load(fis, pwd);
} finally {
fis.close();
}
final String sslKeyStoreProvider = params.get("sslKeyStoreProvider");
final KeyManagerFactory kmf = KeyManagerFactory.getInstance(null == sslKeyStoreProvider ? KeyManagerFactory.getDefaultAlgorithm() : sslKeyStoreProvider);
kmf.init(ks, pwd);
return kmf.getKeyManagers();
} catch (final Exception e) {
throw new ClientRuntimeException(e.getMessage(), e);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy