OpenSSLContextImpl.java revision 860d2707ce126ef8f66e3eac7ceeab6d24218cd8
1/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.conscrypt;
18
19import java.io.IOException;
20import java.security.GeneralSecurityException;
21import javax.net.ssl.SSLServerSocketFactory;
22import javax.net.ssl.SSLSocketFactory;
23
24/**
25 * Overrides the original SSLContextImpl to provide OpenSSL-based
26 * SSLSocketFactory and SSLServerSocketFactory instances.
27 */
28public class OpenSSLContextImpl extends SSLContextImpl {
29
30    public OpenSSLContextImpl() {}
31
32    protected OpenSSLContextImpl(DefaultSSLContextImpl dummy)
33            throws GeneralSecurityException, IOException {
34        super(dummy);
35    }
36
37    @Override
38    public SSLSocketFactory engineGetSocketFactory() {
39        if (sslParameters == null) {
40            throw new IllegalStateException("SSLContext is not initialized.");
41        }
42        return new OpenSSLSocketFactoryImpl(sslParameters);
43    }
44
45    @Override
46    public SSLServerSocketFactory engineGetServerSocketFactory() {
47        if (sslParameters == null) {
48            throw new IllegalStateException("SSLContext is not initialized.");
49        }
50        return new OpenSSLServerSocketFactoryImpl(sslParameters);
51    }
52}
53