1 // Copyright (c) Microsoft Corporation. All rights reserved.
2 // Licensed under the MIT License.
3
4 package com.microsoft.azure.servicebus.amqp;
5
6 import java.security.Provider;
7
8 import javax.net.ssl.SSLContext;
9 import javax.net.ssl.SSLContextSpi;
10
11 // Customer SSLContext that wraps around an SSLContext and removes SSLv2Hello protocol from every SSLEngine created.
12 public class StrictTLSContext extends SSLContext {
13
14 protected StrictTLSContext(SSLContextSpi contextSpi, Provider provider, String protocol) {
15 super(contextSpi, provider, protocol);
16 }
17 }