summaryrefslogtreecommitdiffstats
path: root/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/ssl/impl/TlsContextManagedSslContextFactory.java
blob: a5652042f9e384742414d7a9b84e5302fcac4f67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright 2019 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.http.ssl.impl;

import com.yahoo.security.tls.TlsContext;
import org.eclipse.jetty.util.ssl.SslContextFactory;

import javax.net.ssl.SSLEngine;
import java.net.InetSocketAddress;

/**
 * A Jetty {@link SslContextFactory} backed by {@link TlsContext}.
 * Overrides methods that are used by Jetty to construct ssl sockets and ssl engines.
 *
 * @author bjorncs
 */
class TlsContextManagedSslContextFactory extends SslContextFactory.Server {

    private final TlsContext tlsContext;

    TlsContextManagedSslContextFactory(TlsContext tlsContext) {
        this.tlsContext = tlsContext;
    }

    @Override protected void doStart() { } // Override default behaviour
    @Override protected void doStop() { } // Override default behaviour

    @Override
    public SSLEngine newSSLEngine() {
        return tlsContext.createSslEngine();
    }

    @Override
    public SSLEngine newSSLEngine(InetSocketAddress address) {
        return tlsContext.createSslEngine(address.getHostString(), address.getPort());
    }

    @Override
    public SSLEngine newSSLEngine(String host, int port) {
        return tlsContext.createSslEngine(host, port);
    }

}