/** * 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.camel.component.netty4.ssl; import java.io.InputStream; import java.security.KeyStore; import javax.net.ssl.KeyManagerFactory; import javax.net.ssl.SSLContext; import javax.net.ssl.SSLEngine; import javax.net.ssl.TrustManagerFactory; import org.apache.camel.spi.ClassResolver; import org.apache.camel.util.IOHelper; import org.apache.camel.util.ResourceHelper; public final class SSLEngineFactory { private static final String SSL_PROTOCOL = "TLS"; public SSLEngineFactory() { } public SSLContext createSSLContext(ClassResolver classResolver, String keyStoreFormat, String securityProvider, String keyStoreResource, String trustStoreResource, char[] passphrase) throws Exception { SSLContext answer; KeyStore ks = KeyStore.getInstance(keyStoreFormat); InputStream is = ResourceHelper.resolveMandatoryResourceAsInputStream(classResolver, keyStoreResource); try { ks.load(is, passphrase); } finally { IOHelper.close(is); } KeyManagerFactory kmf = KeyManagerFactory.getInstance(securityProvider); kmf.init(ks, passphrase); answer = SSLContext.getInstance(SSL_PROTOCOL); if (trustStoreResource != null) { KeyStore ts = KeyStore.getInstance(keyStoreFormat); is = ResourceHelper.resolveMandatoryResourceAsInputStream(classResolver, trustStoreResource); try { ts.load(is, passphrase); } finally { IOHelper.close(is); } TrustManagerFactory tmf = TrustManagerFactory.getInstance(securityProvider); tmf.init(ts); answer.init(kmf.getKeyManagers(), tmf.getTrustManagers(), null); } else { answer.init(kmf.getKeyManagers(), null, null); } return answer; } public SSLEngine createServerSSLEngine(SSLContext sslContext) { SSLEngine serverEngine = sslContext.createSSLEngine(); serverEngine.setUseClientMode(false); serverEngine.setNeedClientAuth(true); return serverEngine; } public SSLEngine createClientSSLEngine(SSLContext sslContext) { SSLEngine clientEngine = sslContext.createSSLEngine(); clientEngine.setUseClientMode(true); return clientEngine; } }